
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Evergreen ILS". The branch, rel_3_14 has been updated via f00dc354884062a4b5a5ccb54f59757e2dd762f6 (commit) via a0a81e26c0f856b64f254050e3221ec4f8a770c1 (commit) from 4113a2832aaa63bb9bc3ded336bcdd847b0214a5 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit f00dc354884062a4b5a5ccb54f59757e2dd762f6 Author: Jason Stephenson <jason@sigio.com> Date: Wed Mar 12 15:59:43 2025 -0400 LP#2073561: Update release notes Fix a pgsql -> psql typo in the examples for restoring the database from a backup. Add line(s) about additional options for the psql commands in the examples. Make the final note's language a little more direct. Signed-off-by: Jason Stephenson <jason@sigio.com> diff --git a/docs/RELEASE_NOTES_NEXT/Administration/fix_coded_value_map.adoc b/docs/RELEASE_NOTES_NEXT/Administration/fix_coded_value_map.adoc index 18658f8844..c663d07147 100644 --- a/docs/RELEASE_NOTES_NEXT/Administration/fix_coded_value_map.adoc +++ b/docs/RELEASE_NOTES_NEXT/Administration/fix_coded_value_map.adoc @@ -29,6 +29,8 @@ Example: psql evergreen < Open-ILS/src/sql/Pg/LP2073561.fix.coded.value.map-post_3.13_upgrade.sql ---- +You may need additional options for the psql command depending on your environment. + === Option 2: Restore from backup . From the old copy of your database, pre-dating an upgrade to 3.13 @@ -45,12 +47,15 @@ pg_dump evergreen --data-only --schema config \ + [source,bash] ---- -pgsql evergreen -c "truncate config.coded_value_map CASCADE;" -pgsql evergreen < ccvm_restore.sql +psql evergreen -c "truncate config.coded_value_map CASCADE;" +psql evergreen < ccvm_restore.sql ---- +You may need additional options for the psql and pg_dump commands +depending on your environment. + IMPORTANT: We highly recommend testing these steps on a non-production database! -NOTE: If your Evergreen database was started on version 3.13 and above, then you can safely ignore these instructions. +NOTE: If your Evergreen database started on version 3.13 and above, then you may ignore these instructions. commit a0a81e26c0f856b64f254050e3221ec4f8a770c1 Author: blake <blake@mobiusconsortium.org> Date: Mon Mar 3 11:17:23 2025 -0600 LP#2073561 - fix config.coded_value_map DB upgrade 1416 created unintended consequences for Evergreen's Advanced search features among other things. We supply fixing SQL script for Evergreen databases that have undergone DB upgrade 1416. Removing the damaging SQL code from the two SQL scripts. Extensive instruction RELEASE NOTES supplied Release-note: Retro-fixing config.coded_value_map Signed-off-by: blake <blake@mobiusconsortium.org> Signed-off-by: Jason Stephenson <jason@sigio.com> diff --git a/Open-ILS/src/sql/Pg/961.data.marc21-tag-tables.sql b/Open-ILS/src/sql/Pg/961.data.marc21-tag-tables.sql deleted file mode 100644 index ad5ac6d50e..0000000000 --- a/Open-ILS/src/sql/Pg/961.data.marc21-tag-tables.sql +++ /dev/null @@ -1,29907 +0,0 @@ -BEGIN; - -\set ON_ERROR_STOP on - -DO $$ -BEGIN - -- Check if the constraint already exists - IF NOT EXISTS ( - SELECT 1 - FROM pg_constraint - WHERE conname = 'ctype_code_unique' - AND conrelid = 'config.coded_value_map'::regclass - ) - THEN - -- Add the constraint if it doesn't exist - ALTER TABLE config.coded_value_map - ADD CONSTRAINT ctype_code_unique UNIQUE (ctype, code); - END IF; -END -$$; - -INSERT INTO config.record_attr_definition (name, label, multi, filter, sorter, composite, fixed_field) - SELECT 'FMat', 'Form of Material', 't', 't', 'f', 'f', 'FMat' - WHERE NOT EXISTS (SELECT 1 FROM config.record_attr_definition WHERE name = 'FMat'); - -INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type, start_pos, length) -SELECT v.fixed_field, v.tag, v.rec_type, v.start_pos, v.length -FROM (VALUES - ('FMat', '006', 'BKS', 0, 1), - ('FMat', '006', 'COM', 0, 1), - ('FMat', '006', 'MAP', 0, 1), - ('FMat', '006', 'MIX', 0, 1), - ('FMat', '006', 'REC', 0, 1), - ('FMat', '006', 'SCO', 0, 1), - ('FMat', '006', 'SER', 0, 1), - ('FMat', '006', 'VIS', 0, 1) -) AS v(fixed_field, tag, rec_type, start_pos, length) -WHERE -FALSE AND -- skipping the 006 for now -NOT EXISTS ( - SELECT 1 FROM config.marc21_ff_pos_map - WHERE - fixed_field = v.fixed_field AND - tag = v.tag AND - rec_type = v.rec_type AND - start_pos = v.start_pos -); - -CREATE OR REPLACE FUNCTION evergreen.insert_update_coded_value_map(_tag TEXT, _start_pos INT, _code TEXT, _value TEXT, _description TEXT, _rec_type TEXT) -RETURNS VOID AS $$ -DECLARE - _ctype TEXT; - _processed_value TEXT; - _grouped_rec_type TEXT[]; -BEGIN - -- Mapping _rec_type to groups - CASE _rec_type - WHEN 'biblio' THEN - _grouped_rec_type := ARRAY['COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER']; - WHEN 'authority' THEN - _grouped_rec_type := ARRAY['AUT']; - ELSE - _grouped_rec_type := ARRAY[_rec_type]; -- Default to itself if not mapped - END CASE; - - SELECT name INTO _ctype - FROM config.record_attr_definition - WHERE fixed_field = ( - SELECT fixed_field - FROM config.marc21_ff_pos_map - WHERE tag = _tag AND start_pos = _start_pos - AND rec_type = ANY(_grouped_rec_type) - LIMIT 1 - ); - - IF _ctype IS NULL THEN - RAISE INFO 'Subquery returned NULL for tag %, start_pos %', _tag, _start_pos; - ELSE - _processed_value := _value; - IF _value IN ('#', '|') THEN - _processed_value := ' '; - RAISE INFO 'Replacing value "%" with a space for tag %, start_pos %, code %', _value, _tag, _start_pos, _code; - END IF; - - INSERT INTO config.coded_value_map (ctype, code, value, description) - VALUES (_ctype, _code, _processed_value, _description) - ON CONFLICT (ctype, code) - DO UPDATE SET - value = EXCLUDED.value, - description = EXCLUDED.description; - END IF; -END; -$$ LANGUAGE plpgsql; - -CREATE OR REPLACE FUNCTION evergreen.simple_insert_update_coded_value_map(_ctype TEXT, _code TEXT, _value TEXT, _description TEXT) -RETURNS VOID AS $$ -BEGIN - INSERT INTO config.coded_value_map (ctype, code, value, description) - VALUES (_ctype, _code, _value, _description) - ON CONFLICT (ctype, code) - DO UPDATE SET - value = EXCLUDED.value, - description = EXCLUDED.description; -END; -$$ LANGUAGE plpgsql; --- category: authority tag: 001 file: www.loc.gov/marc/authority/concise/ad001.html --- category: authority tag: 003 file: www.loc.gov/marc/authority/concise/ad003.html --- category: authority tag: 005 file: www.loc.gov/marc/authority/concise/ad005.html --- category: authority tag: 008 file: www.loc.gov/marc/authority/concise/ad008.html - - UPDATE config.record_attr_definition - SET description = 'Date entered on file' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 0 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Direct or indirect geographic subdivision' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 6 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Romanization scheme' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 7 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Language of catalog' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 8 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Kind of record' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 9 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Descriptive cataloging rules' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 10 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Subject heading system/thesaurus' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 11 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of series' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 12 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Numbered or unnumbered series' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 13 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Heading use-main or added entry' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 14 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Heading use-subject added entry' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 15 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Heading use-series added entry' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 16 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of subject subdivision' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 17 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined character positions' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of government agency' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 28 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Reference evaluation' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 29 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined character position' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 30 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Record update in process' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 31 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undifferentiated personal name' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 32 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Level of establishment' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 33 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined character positions' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 34 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Modified record' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 38 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Cataloging source' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 39 AND rec_type = 'AUT' LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 6, '#', 'Not subdivided geographically', '1XX heading is not to be subdivided geographically when used in a subject - access entry in a bibliographic record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'd', 'Subdivided geographically-direct', 'Heading is followed immediately by the name of the specific place to which the - heading is limited without the interposition of a subdivision for the name of - the larger geographic entity. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'i', 'Subdivided geographically-indirect', 'Name of the larger geographic entity is interposed between the heading and the - subdivision for the specific place to which the heading is limited. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'n', 'Not applicable', 'Heading is unestablished or is an established heading that is not appropriate - for use as a subject added entry in bibliographic records (008/15, code b). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 6, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'a', 'a - International standard', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'b', 'b - National standard', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'c', 'c - National library association standard', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'd', 'd - National library or bibliographic agency standard', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'e', 'e - Local standard', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'f', 'f - Standard of unknown origin', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'g', 'g - Conventional romanization or conventional form of name in language of', 'cataloging agency', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'n', 'Not applicable', '1XX heading is not romanized.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 8, '#', '# - No information provided', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 8, 'b', 'b - English and French', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 8, 'e', 'e - English only', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 8, 'f', 'f - French only', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 8, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'a', 'Established heading', '100-15X field contains an established name, name/title, - uniform title, topical term, or one of these used in an extended subject - heading. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'b', 'Untraced reference', '100-15X field contains an unestablished heading that is not - authorized for use as the element in an access point in a bibliographic record. - The heading is not traced as a 4XX See From Tracing field in any other - authority record. The reference record contains a Complex See Reference (260) - or a General Explanatory Reference (666) field to guide the user to established - heading(s). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'c', 'Traced reference', '100-15X field contains an unestablished heading that is traced - as a 4XX field in the record for each established heading referred to in fields - 260 or 664. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'd', 'Subdivision', '18X field contains an unestablished heading that may be used - as a subject subdivision with an established heading. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'e', 'Node label', '15X field contains an unestablished term that is the - authorized form that is used in the systematic section of a thesaurus to - indicate the logical basis on which a category has been divided. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'f', 'Established heading and subdivision', '15X field contains an established heading that may be used as - a main term and as a subject subdivision. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'g', 'Reference and subdivision', '15X field contains an unestablished heading that may be used - as a reference term and as a subject subdivision. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, 'a', 'Earlier rules', 'Formulation of the 1XX heading conforms to descriptive cataloging rules used - prior to the 1967 publication of Anglo-American Cataloging Rules (AACR - 1). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, 'b', 'AACR 1', 'Formulation of the 1XX heading conforms to the 1967 Anglo-American - Cataloging Rules (AACR 1). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, 'c', 'AACR 2', 'Formulation of the 1XX heading conforms to the second edition (1978) or later - editions of Anglo-American Cataloguing Rules (AACR 2) or published - cataloging manuals based on the AACR 2. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, 'd', 'AACR 2 compatible heading', 'Formulation of the 1XX heading does not follow but is considered compatible - with AACR 2. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, 'z', 'Other', 'Formulation of the 1XX heading conforms to a set of descriptive cataloging - conventions other than what is specified by one of the other defined codes. - - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, 'n', 'Not applicable', '1XX heading is not a name, name/title, or uniform title formulated according to - descriptive cataloging rules and is not appropriate for use as a main or added - entry in bibliographic records. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'a', 'Library of Congress Subject Headings', '1XX heading conforms to Library of Congress Subject Headings - (LCSH). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'b', 'b - Library of Congress Children''s and Young Adults'' Subject Headings', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'c', 'Medical Subject Headings', '1XX heading conforms to Medical Subject Headings (MeSH). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'd', 'National Agricultural Library subject authority file', '1XX heading conforms to the NAL subject authority file.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'k', 'Canadian Subject Headings', '1XX heading conforms to Canadian Subject Headings. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'n', 'Not applicable', '1XX heading does not conform to subject heading system/thesaurus conventions - and is not appropriate for use as a subject added entry in bibliographic - records. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'r', 'Art and Architecture Thesaurus', '1XX heading conforms to Art and Architecture Thesaurus. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 's', 'Sears List of Subject Heading', '1XX heading conforms to Sears List of Subject Headings. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'v', 'Répertoire de vedettes-matière', '1XX heading conforms to Répertoire de vedettes-matière. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'z', 'Other', '1XX heading conforms to subject heading system/thesaurus conventions other than - that specified by one of the other defined codes. A MARC code for the - conventions used to formulate the heading may be contained in subfield - $f (Subject heading/thesaurus conventions) in field 040 (Cataloging - Source). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 12, 'a', 'Monographic series', '1XX field contains an established heading for a collective title that applies - to a group of separate publications and/or subseries, each of which also has - its own title. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 12, 'b', 'Multipart item', '1XX field contains an established heading for a collective title that applies - to a multipart monographic publication. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 12, 'c', 'Series-like phrase', '1XX field contains a phrase that is not being used as a series in a - bibliographic record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 12, 'n', 'Not applicable', '1XX field does not represent a series or a series-like phrase and is not - appropriate for use as a series added entry in bibliographic records. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 12, 'z', 'Other', '1XX field contains a heading for a publication that does not fit any of the - other defined codes but for which series-type treatment is required. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 12, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 13, 'a', 'a - Numbered', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 13, 'b', 'b - Unnumbered', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 13, 'c', 'c - Numbering varies', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 13, 'n', 'Not applicable', '1XX heading is not a series heading (008/12, code n).', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 13, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 14, 'a', 'Appropriate', '1XX field contains an established name, name/title, or uniform title that - conforms to descriptive cataloging rules. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 14, 'b', 'Not appropriate', '1XX heading in an established heading record does not conform to descriptive - cataloging conventions or the 1XX field contains an unestablished heading in a - reference, subdivision, or node label record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 14, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 15, 'a', 'Appropriate', '1XX field contains an established heading name, name/title, uniform title, - topical term, or extended subject heading that conforms to subject heading - system/thesaurus conventions. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 15, 'b', 'Not appropriate', '1XX heading in an established heading record does not conform to subject - heading system/thesaurus conventions or the 1XX field contains an unestablished - heading in a reference, subdivision, or node label record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 15, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 16, 'a', 'Appropriate', '1XX heading in an established heading record represents one of the types of - series coded in 008/12 (code a, b, c, or z). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 16, 'b', 'Not appropriate', '1XX heading in an established heading record does not represent one of the - types of series coded in 008/12 (code n) or the 1XX field contains an - unestablished heading in a reference, subdivision, or node label record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 16, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, 'a', 'a - Topical', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, 'b', 'b - Form', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, 'c', 'c - Chronological', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, 'd', 'd - Geographic', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, 'e', 'e - Language', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, 'n', 'Not applicable', '1XX heading is not an authorized subject subdivision.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '#', '# - Not a government agency', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'a', 'a - Autonomous or semi-autonomous component', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'c', 'c - Multilocal', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'f', 'f - Federal/national', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'i', 'i - International intergovernmental', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'l', 'l - Local', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'm', 'm - Multistate', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'o', 'o - Government agency-type undetermined', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 's', 's - State, provincial, territorial, dependent, etc.', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'u', 'u - Unknown if heading is government agency', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'z', 'z - Other', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'a', 'a - Tracings are consistent with the heading', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'b', 'b - Tracings are not necessarily consistent with the heading', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'n', 'Not applicable', 'Record contains no 4XX/5XX tracing fields.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 31, 'a', 'a - Record can be used', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 31, 'b', 'Record is being updated', 'Change in the record is being considered and it may not be advisable to use the - 1XX heading in bibliographic records. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 32, 'a', 'Differentiated personal name', 'Personal name in field 100 is a unique name.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 32, 'b', 'Undifferentiated personal name', 'Personal name in field 100 is used by two or more persons.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 32, 'n', 'Not applicable', '1XX heading is not a personal name or the personal name is a family name.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 32, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'a', 'a - Fully established', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'b', 'Memorandum', '100-151 heading is fully established but it has not been used in a - bibliographic record. The authority work was done before the decision was made - to not use the heading in a bibliographic record; however, the information is - retained for probable future use. When the heading is used in a bibliographic - record, code b may be changed to code a or c. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'c', 'Provisional', '100-151 heading cannot be formulated satisfactorily because of inadequate - information. Further investigation should be made when the heading is next used - in a bibliographic record. When the needed information is available, code c may - be changed to code a. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'd', 'Preliminary', '100-151 heading is taken from a bibliographic record because the bibliographic - item is not available at the time the heading is established. When the heading - is used in a bibliographic record created from cataloging with an item in hand, - code d may be changed to code a. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'n', 'Not applicable', '1XX field contains an unestablished heading in a reference, subdivision, - reference and subdivision, or node label record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 38, '#', '# - Not modified', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 's', 'Shortened', 'Some of the data has been omitted because the record would have exceeded the - maximum length allowed by a particular system. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 'x', 'Missing characters', 'Characters that could not be converted into machine-readable form due to - character set limitations are missing from the record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 38, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 39, '#', '# - National bibliographic agency', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 39, 'c', 'Cooperative cataloging program', 'Creator of the authority data is a participant (other than a national - bibliographic agency) in a cooperative cataloging program. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 39, 'd', 'Other', 'Organization that is other than a national bibliographic agency or a - participant in a cooperative cataloging program. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 39, 'u', 'Unknown', 'Creator of the authority data is unknown. This code is used when an - organization transcribes manual authority data from an unknown source. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 39, '|', '| - No attempt to code', '', 'authority'); --- category: authority tag: 010 file: www.loc.gov/marc/authority/concise/ad010.html --- category: authority tag: 014 file: www.loc.gov/marc/authority/concise/ad014.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_014_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_014_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_014_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_014_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '014', 'a', 'Control number of related bibliographic record (NR) MARC code (enclosed in parentheses) of the organization that created the related bibliographic record, followed immediately by the bibliographic record control number. See Appendix G: Organization Code Sources for a listing of sources used in MARC 21 records.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '014', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '014', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 014 file: www.loc.gov/marc/authority/concise/ad014.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_014_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_014_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_014_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_014_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '014', 'a', 'Control number of related bibliographic record (NR) MARC code (enclosed in parentheses) of the organization that created the related bibliographic record, followed immediately by the bibliographic record control number. See Appendix G: Organization Code Sources for a listing of sources used in MARC 21 records.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '014', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '014', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 016 file: www.loc.gov/marc/authority/concise/ad016.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_016_ind_1$ident$, - BTRIM($label$First - National bibliographic agency - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_016_ind_1', '#', 'Library and Archives Canada', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_016_ind_1', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_016_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_016_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', 'a', 'Record control number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', 'z', 'Canceled or invalid record control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', '2', 'Source (NR) MARC code or the name of the organization that identifies the national bibliographic agency that was the source of the record control number. Code from: MARC Code List for Organizations.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 016 file: www.loc.gov/marc/authority/concise/ad016.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_016_ind_1$ident$, - BTRIM($label$First - National bibliographic agency - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_016_ind_1', '#', 'Library and Archives Canada', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_016_ind_1', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_016_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_016_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', 'a', 'Record control number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', 'z', 'Canceled or invalid record control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', '2', 'Source (NR) MARC code or the name of the organization that identifies the national bibliographic agency that was the source of the record control number. Code from: MARC Code List for Organizations.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 031 file: www.loc.gov/marc/authority/concise/ad031.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_031_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_031_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_031_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_031_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'b', 'Number of movement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'c', 'Number of excerpt (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'd', 'Caption or heading (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'e', 'Role (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'g', 'Clef (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'm', 'Voice/instrument (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'n', 'Key signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'o', 'Time signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'p', 'Musical notation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'q', 'General note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'r', 'Key or mode (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 's', 'Coded validity note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 't', 'Text incipit (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'y', 'Link text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', '2', 'System code (NR) MARC code that identifies the encoding system used to transcribe the musical notation in subfield $p (Musical notation). Use of subfield $2 is mandatory if subfield $p is present. Code from: Musical Incipit Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 031 file: www.loc.gov/marc/authority/concise/ad031.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_031_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_031_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_031_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_031_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'b', 'Number of movement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'c', 'Number of excerpt (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'd', 'Caption or heading (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'e', 'Role (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'g', 'Clef (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'm', 'Voice/instrument (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'n', 'Key signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'o', 'Time signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'p', 'Musical notation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'q', 'General note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'r', 'Key or mode (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 's', 'Coded validity note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 't', 'Text incipit (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'y', 'Link text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', '2', 'System code (NR) MARC code that identifies the encoding system used to transcribe the musical notation in subfield $p (Musical notation). Use of subfield $2 is mandatory if subfield $p is present. Code from: Musical Incipit Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 035 file: www.loc.gov/marc/authority/concise/ad035.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_035_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_035_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_035_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_035_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', 'a', 'System control number (NR) MARC code (enclosed in parentheses) of the organization originating the system control number, followed immediately by the number. See Appendix G: Organization Code Sources.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', 'z', 'Canceled/invalid system control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 035 file: www.loc.gov/marc/authority/concise/ad035.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_035_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_035_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_035_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_035_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', 'a', 'System control number (NR) MARC code (enclosed in parentheses) of the organization originating the system control number, followed immediately by the number. See Appendix G: Organization Code Sources.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', 'z', 'Canceled/invalid system control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 042 file: www.loc.gov/marc/authority/concise/ad042.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_042_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_042_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_042_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_042_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '042', 'a', 'Authentication code (R) If more than one code is applicable, the subfield is repeated. Code from: MARC Authentication Action Code List.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 042 file: www.loc.gov/marc/authority/concise/ad042.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_042_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_042_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_042_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_042_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '042', 'a', 'Authentication code (R) If more than one code is applicable, the subfield is repeated. Code from: MARC Authentication Action Code List.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 045 file: www.loc.gov/marc/authority/concise/ad045.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_045_ind_1$ident$, - BTRIM($label$First - Type of time period in subfield $b or $c - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '#', 'Subfield $b or $c not present', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '0', 'Single date/time', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '1', 'Multiple single dates/times', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '2', 'Range of dates/times', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_045_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', 'a', 'Time period code (R) Four-character alphanumeric code derived from the "Time Period Code Table" for B.C. and C.E. time periods. Table is found in the MARC 21 Format for Authority Data under the description of field 045, subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', 'b', 'Formatted 9999 B.C. through C.E. time period (R) Specific time period formatted as yyyymmddhh, preceded by a code for the era (c for B.C.; d for C.E.).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', 'c', 'Formatted pre-9999 B.C. time period (R) Formatted time period that consists of as many numeric characters as are needed to represent the number of pre-9999 years B.C.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 045 file: www.loc.gov/marc/authority/concise/ad045.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_045_ind_1$ident$, - BTRIM($label$First - Type of time period in subfield $b or $c - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '#', 'Subfield $b or $c not present', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '0', 'Single date/time', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '1', 'Multiple single dates/times', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '2', 'Range of dates/times', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_045_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', 'a', 'Time period code (R) Four-character alphanumeric code derived from the "Time Period Code Table" for B.C. and C.E. time periods. Table is found in the MARC 21 Format for Authority Data under the description of field 045, subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', 'b', 'Formatted 9999 B.C. through C.E. time period (R) Specific time period formatted as yyyymmddhh, preceded by a code for the era (c for B.C.; d for C.E.).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', 'c', 'Formatted pre-9999 B.C. time period (R) Formatted time period that consists of as many numeric characters as are needed to represent the number of pre-9999 years B.C.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 066 file: www.loc.gov/marc/authority/concise/ad066.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_066_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_066_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_066_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_066_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '066', 'a', 'Primary G0 character set (NR) Code is composed of the Intermediate and Final characters of the escape sequence that designates and invokes the default G0 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '066', 'b', 'Primary G1 character set (NR) Code is composed of the Intermediate and Final characters of the escape sequence that designates and invokes the default G1 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '066', 'c', 'Alternate G0 or G1 character set (R) Code is composed of the Intermediate and Final characters of each escape sequence that will be used to designate an alternate graphic character set used in the record.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 066 file: www.loc.gov/marc/authority/concise/ad066.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_066_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_066_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_066_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_066_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '066', 'a', 'Primary G0 character set (NR) Code is composed of the Intermediate and Final characters of the escape sequence that designates and invokes the default G0 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '066', 'b', 'Primary G1 character set (NR) Code is composed of the Intermediate and Final characters of the escape sequence that designates and invokes the default G1 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '066', 'c', 'Alternate G0 or G1 character set (R) Code is composed of the Intermediate and Final characters of each escape sequence that will be used to designate an alternate graphic character set used in the record.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 072 file: www.loc.gov/marc/authority/concise/ad072.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_072_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_072_ind_2$ident$, - BTRIM($label$Second - Code source - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_2', '0', 'NAL subject category code list', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', 'a', 'Subject category code (NR) Code for the broad subject category to which the heading belongs in a hierarchically-arranged thesaurus.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', 'x', 'Subject category code subdivision (R) Level of specificity within the broader category coded in subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', '2', 'Code source (NR) MARC code that identifies the thesaurus used to assign the subject category code when the second indicator position of this field contains value 7. Code from: Subject Category Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 072 file: www.loc.gov/marc/authority/concise/ad072.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_072_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_072_ind_2$ident$, - BTRIM($label$Second - Code source - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_2', '0', 'NAL subject category code list', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', 'a', 'Subject category code (NR) Code for the broad subject category to which the heading belongs in a hierarchically-arranged thesaurus.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', 'x', 'Subject category code subdivision (R) Level of specificity within the broader category coded in subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', '2', 'Code source (NR) MARC code that identifies the thesaurus used to assign the subject category code when the second indicator position of this field contains value 7. Code from: Subject Category Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 073 file: www.loc.gov/marc/authority/concise/ad073.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_073_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_073_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_073_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_073_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', 'a', 'Subdivision usage (R) Category designator code that specifies the category of terms with which the subdivision may be used.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', 'z', 'Code source (NR) MARC code that identifies the thesaurus used to assign the category designator code. Code from: Subject Category Code Source Codes .','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 073 file: www.loc.gov/marc/authority/concise/ad073.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_073_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_073_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_073_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_073_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', 'a', 'Subdivision usage (R) Category designator code that specifies the category of terms with which the subdivision may be used.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', 'z', 'Code source (NR) MARC code that identifies the thesaurus used to assign the category designator code. Code from: Subject Category Code Source Codes .','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 086 file: www.loc.gov/marc/authority/concise/ad086.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_086_ind_1$ident$, - BTRIM($label$First - Number source - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_1', '#', 'Source specified in subfield $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_1', '0', 'Superintendent of Documents Classification System', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_1', '1', 'Government of Canada Publications: Outline of Classification', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_086_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', 'a', 'Call number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', 'd', 'Volumes/dates to which call number applies (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', 'z', 'Canceled/invalid call number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '2', 'Number source (NR) MARC code that identifies the government document classification system or scheme when the first indicator position contains value blank (#). Code from: Classification Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 086 file: www.loc.gov/marc/authority/concise/ad086.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_086_ind_1$ident$, - BTRIM($label$First - Number source - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_1', '#', 'Source specified in subfield $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_1', '0', 'Superintendent of Documents Classification System', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_1', '1', 'Government of Canada Publications: Outline of Classification', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_086_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', 'a', 'Call number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', 'd', 'Volumes/dates to which call number applies (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', 'z', 'Canceled/invalid call number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '2', 'Number source (NR) MARC code that identifies the government document classification system or scheme when the first indicator position contains value blank (#). Code from: Classification Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 09x file: www.loc.gov/marc/authority/concise/ad09x.html --- category: authority tag: 640 file: www.loc.gov/marc/authority/concise/ad640.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_640_ind_1$ident$, - BTRIM($label$First - Note format style - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_640_ind_1', '0', 'Formatted style', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_640_ind_1', '1', 'Unformatted style', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_640_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_640_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', 'a', 'Dates of publication and/or sequential designation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', 'z', 'Source of information (NR) Citation for the source of the information contained in subfield $a. Instruction term: Cf. may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 640 file: www.loc.gov/marc/authority/concise/ad640.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_640_ind_1$ident$, - BTRIM($label$First - Note format style - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_640_ind_1', '0', 'Formatted style', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_640_ind_1', '1', 'Unformatted style', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_640_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_640_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', 'a', 'Dates of publication and/or sequential designation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', 'z', 'Source of information (NR) Citation for the source of the information contained in subfield $a. Instruction term: Cf. may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 641 file: www.loc.gov/marc/authority/concise/ad641.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_641_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_641_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_641_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_641_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', 'a', 'Numbering peculiarities note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', 'z', 'Source of information (NR) Citation for the source of the information contained in subfield $a. Instruction term: Cf. may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 641 file: www.loc.gov/marc/authority/concise/ad641.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_641_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_641_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_641_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_641_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', 'a', 'Numbering peculiarities note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', 'z', 'Source of information (NR) Citation for the source of the information contained in subfield $a. Instruction term: Cf. may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 642 file: www.loc.gov/marc/authority/concise/ad642.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_642_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_642_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_642_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_642_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', 'a', 'Series numbering example (NR) Form of number in series a.e.: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', 'd', 'Volumes/dates to which series numbering example applies (NR) Statement used only when the series numbering example contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', '5', 'Institution/copy to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 642 file: www.loc.gov/marc/authority/concise/ad642.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_642_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_642_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_642_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_642_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', 'a', 'Series numbering example (NR) Form of number in series a.e.: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', 'd', 'Volumes/dates to which series numbering example applies (NR) Statement used only when the series numbering example contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', '5', 'Institution/copy to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 643 file: www.loc.gov/marc/authority/concise/ad643.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_643_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_643_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_643_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_643_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', 'a', 'Place (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', 'b', 'Publisher/issuing body (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', 'd', 'Volumes/dates to which place and publisher/issuing body apply (NR) Used only when the data contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 643 file: www.loc.gov/marc/authority/concise/ad643.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_643_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_643_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_643_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_643_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', 'a', 'Place (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', 'b', 'Publisher/issuing body (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', 'd', 'Volumes/dates to which place and publisher/issuing body apply (NR) Used only when the data contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 644 file: www.loc.gov/marc/authority/concise/ad644.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_644_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_644_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_644_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_644_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', 'a', 'Series analysis practice (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', 'b', 'Exceptions to analysis practice (NR) Statement identifying those items in the series to which the analysis practice code contained in subfield $a does not apply.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', 'd', 'Volumes/dates to which analysis practice applies (NR) Statement that is used only when the data contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', '5', 'Institution/copy to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 644 file: www.loc.gov/marc/authority/concise/ad644.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_644_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_644_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_644_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_644_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', 'a', 'Series analysis practice (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', 'b', 'Exceptions to analysis practice (NR) Statement identifying those items in the series to which the analysis practice code contained in subfield $a does not apply.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', 'd', 'Volumes/dates to which analysis practice applies (NR) Statement that is used only when the data contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', '5', 'Institution/copy to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 645 file: www.loc.gov/marc/authority/concise/ad645.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_645_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_645_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_645_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_645_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', 'a', 'Series tracing practice (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', 'd', 'Volumes/dates to which tracing practice applies (NR) Statement used only when the tracing practice contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', '5', 'Institution/copy to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 645 file: www.loc.gov/marc/authority/concise/ad645.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_645_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_645_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_645_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_645_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', 'a', 'Series tracing practice (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', 'd', 'Volumes/dates to which tracing practice applies (NR) Statement used only when the tracing practice contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', '5', 'Institution/copy to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 646 file: www.loc.gov/marc/authority/concise/ad646.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_646_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_646_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_646_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_646_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', 'a', 'Series classification practice (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', 'd', 'Volumes/dates to which classification practice applies (NR) Statement used only when the classification practice contained in subfield $a does not apply to all items of the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 646 file: www.loc.gov/marc/authority/concise/ad646.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_646_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_646_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_646_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_646_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', 'a', 'Series classification practice (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', 'd', 'Volumes/dates to which classification practice applies (NR) Statement used only when the classification practice contained in subfield $a does not apply to all items of the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 663 file: www.loc.gov/marc/authority/concise/ad663.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_663_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_663_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_663_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_663_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', 'a', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', 'b', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', 't', 'Title referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 663 file: www.loc.gov/marc/authority/concise/ad663.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_663_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_663_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_663_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_663_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', 'a', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', 'b', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', 't', 'Title referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 664 file: www.loc.gov/marc/authority/concise/ad664.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_664_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_664_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_664_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_664_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', 'a', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', 'b', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', 't', 'Title referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 664 file: www.loc.gov/marc/authority/concise/ad664.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_664_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_664_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_664_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_664_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', 'a', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', 'b', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', 't', 'Title referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 665 file: www.loc.gov/marc/authority/concise/ad665.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_665_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_665_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_665_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_665_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '665', 'a', 'History reference (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '665', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '665', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 665 file: www.loc.gov/marc/authority/concise/ad665.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_665_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_665_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_665_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_665_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '665', 'a', 'History reference (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '665', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '665', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 666 file: www.loc.gov/marc/authority/concise/ad666.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_666_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_666_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_666_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_666_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '666', 'a', 'General explanatory reference (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '666', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '666', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 666 file: www.loc.gov/marc/authority/concise/ad666.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_666_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_666_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_666_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_666_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '666', 'a', 'General explanatory reference (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '666', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '666', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 667 file: www.loc.gov/marc/authority/concise/ad667.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_667_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_667_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_667_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_667_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', 'a', 'Nonpublic general note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 667 file: www.loc.gov/marc/authority/concise/ad667.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_667_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_667_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_667_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_667_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', 'a', 'Nonpublic general note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 681 file: www.loc.gov/marc/authority/concise/ad681.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_681_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_681_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_681_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_681_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', 'a', 'Subject heading or subdivision term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', 'i', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 681 file: www.loc.gov/marc/authority/concise/ad681.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_681_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_681_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_681_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_681_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', 'a', 'Subject heading or subdivision term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', 'i', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 682 file: www.loc.gov/marc/authority/concise/ad682.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_682_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_682_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_682_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_682_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', 'a', 'Replacement heading (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', 'i', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', '0', 'Replacement authority record control number (R) System control number of the replacement authority record preceded by the MARC code, enclosed in parentheses, for the agency to which the control number applies. See Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 682 file: www.loc.gov/marc/authority/concise/ad682.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_682_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_682_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_682_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_682_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', 'a', 'Replacement heading (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', 'i', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', '0', 'Replacement authority record control number (R) System control number of the replacement authority record preceded by the MARC code, enclosed in parentheses, for the agency to which the control number applies. See Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 688 file: www.loc.gov/marc/authority/concise/ad688.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_688_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_688_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_688_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_688_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', 'a', 'Application history note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 688 file: www.loc.gov/marc/authority/concise/ad688.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_688_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_688_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_688_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_688_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', 'a', 'Application history note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 880 file: www.loc.gov/marc/authority/concise/ad880.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_880_ind_1$ident$, - BTRIM($label$First - Same as associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_880_ind_2$ident$, - BTRIM($label$Second - Same as associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'a', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'b', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'c', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'd', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'e', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'f', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'g', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'h', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'i', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'j', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'k', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'l', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'm', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'n', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'o', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'p', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'q', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'r', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 's', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 't', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'u', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'v', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'w', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'x', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'y', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'z', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '0', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '1', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '2', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '3', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '4', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '5', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '7', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '8', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '9', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 880 file: www.loc.gov/marc/authority/concise/ad880.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_880_ind_1$ident$, - BTRIM($label$First - Same as associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_880_ind_2$ident$, - BTRIM($label$Second - Same as associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'a', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'b', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'c', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'd', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'e', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'f', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'g', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'h', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'i', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'j', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'k', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'l', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'm', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'n', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'o', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'p', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'q', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'r', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 's', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 't', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'u', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'v', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'w', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'x', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'y', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'z', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '0', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '1', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '2', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '3', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '4', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '5', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '7', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '8', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '9', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 001 file: www.loc.gov/marc/bibliographic/concise/bd001.html --- category: biblio tag: 003 file: www.loc.gov/marc/bibliographic/concise/bd003.html --- category: biblio tag: 005 file: www.loc.gov/marc/bibliographic/concise/bd005.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007f.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007o.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007q.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007r.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007t.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007z.html --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008.html --- category: biblio tag: 010 file: www.loc.gov/marc/bibliographic/concise/bd010.html --- category: biblio tag: 013 file: www.loc.gov/marc/bibliographic/concise/bd013.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_013_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_013_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_013_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_013_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'a', 'Number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'b', 'Country (NR) Code representing the country or jurisdiction associated with the patent document. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'c', 'Type of number (NR) Type of patent document identifier','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'd', 'Date (R) Date a patent or certificate was granted, or the date of acceptance of an application. The date requires 8 numeric characters in the pattern yyyymmdd (4 for the year, 2 for the month, and 2 for the day).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'e', 'Status (R) Text that explains or clarifies the status of the patent document identified by the number in the field.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'f', 'Party to document (R) Information that identifies the country or agency that is party to the document, usually an application for patent or related document. Codes from: MARC Code List for Countries and MARC Code List for Organizations.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 013 file: www.loc.gov/marc/bibliographic/concise/bd013.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_013_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_013_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_013_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_013_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'a', 'Number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'b', 'Country (NR) Code representing the country or jurisdiction associated with the patent document. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'c', 'Type of number (NR) Type of patent document identifier','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'd', 'Date (R) Date a patent or certificate was granted, or the date of acceptance of an application. The date requires 8 numeric characters in the pattern yyyymmdd (4 for the year, 2 for the month, and 2 for the day).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'e', 'Status (R) Text that explains or clarifies the status of the patent document identified by the number in the field.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'f', 'Party to document (R) Information that identifies the country or agency that is party to the document, usually an application for patent or related document. Codes from: MARC Code List for Countries and MARC Code List for Organizations.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 016 file: www.loc.gov/marc/bibliographic/concise/bd016.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_016_ind_1$ident$, - BTRIM($label$First - National bibliographic agency - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_016_ind_1', '#', 'Library and Archives Canada', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_016_ind_1', '7', 'Source specified in subfield $2 - Used when the source of the control number is indicated by a code in subfield - $2. Codes from: MARC Code List for Organizations.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_016_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_016_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', 'a', 'Record control number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', 'z', 'Canceled/invalid control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', '2', 'Source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 016 file: www.loc.gov/marc/bibliographic/concise/bd016.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_016_ind_1$ident$, - BTRIM($label$First - National bibliographic agency - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_016_ind_1', '#', 'Library and Archives Canada', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_016_ind_1', '7', 'Source specified in subfield $2 - Used when the source of the control number is indicated by a code in subfield - $2. Codes from: MARC Code List for Organizations.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_016_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_016_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', 'a', 'Record control number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', 'z', 'Canceled/invalid control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', '2', 'Source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 018 file: www.loc.gov/marc/bibliographic/concise/bd018.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_018_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_018_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_018_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_018_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '018', 'a', 'Copyright article-fee code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '018', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '018', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 018 file: www.loc.gov/marc/bibliographic/concise/bd018.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_018_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_018_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_018_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_018_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '018', 'a', 'Copyright article-fee code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '018', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '018', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 025 file: www.loc.gov/marc/bibliographic/concise/bd025.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_025_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_025_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_025_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_025_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '025', 'a', 'Overseas acquisition number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '025', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 025 file: www.loc.gov/marc/bibliographic/concise/bd025.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_025_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_025_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_025_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_025_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '025', 'a', 'Overseas acquisition number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '025', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 026 file: www.loc.gov/marc/bibliographic/concise/bd026.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_026_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_026_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_026_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_026_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'a', 'First and second groups of characters (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'b', 'Third and fourth groups of characters (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'c', 'Date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'd', 'Number of volume or part (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'e', 'Unparsed fingerprint (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '2', 'Source (NR) MARC code that identifies the guidelines followed to establish the fingerprint. Code from: Fingerprint Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 026 file: www.loc.gov/marc/bibliographic/concise/bd026.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_026_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_026_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_026_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_026_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'a', 'First and second groups of characters (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'b', 'Third and fourth groups of characters (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'c', 'Date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'd', 'Number of volume or part (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'e', 'Unparsed fingerprint (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '2', 'Source (NR) MARC code that identifies the guidelines followed to establish the fingerprint. Code from: Fingerprint Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 030 file: www.loc.gov/marc/bibliographic/concise/bd030.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_030_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_030_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_030_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_030_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', 'a', 'CODEN (NR) Valid CODEN for the title.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', 'z', 'Canceled/invalid CODEN (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 030 file: www.loc.gov/marc/bibliographic/concise/bd030.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_030_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_030_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_030_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_030_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', 'a', 'CODEN (NR) Valid CODEN for the title.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', 'z', 'Canceled/invalid CODEN (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 031 file: www.loc.gov/marc/bibliographic/concise/bd031.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_031_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_031_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_031_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_031_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'a', 'Number of work (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'b', 'Number of movement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'c', 'Number of excerpt (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'd', 'Caption or heading (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'e', 'Role (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'g', 'Clef (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'm', 'Voice/instrument (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'n', 'Key signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'o', 'Time signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'p', 'Musical notation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'q', 'General note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'r', 'Key or mode (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 's', 'Coded validity note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 't', 'Text incipit (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'y', 'Link text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', '2', 'System code (NR) MARC code that identifies the encoding system used to transcribe the musical notation in subfield $p (Musical notation). Use of subfield $2 is mandatory if subfield $p is present. Code from: Musical Incipit Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 031 file: www.loc.gov/marc/bibliographic/concise/bd031.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_031_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_031_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_031_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_031_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'a', 'Number of work (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'b', 'Number of movement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'c', 'Number of excerpt (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'd', 'Caption or heading (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'e', 'Role (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'g', 'Clef (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'm', 'Voice/instrument (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'n', 'Key signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'o', 'Time signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'p', 'Musical notation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'q', 'General note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'r', 'Key or mode (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 's', 'Coded validity note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 't', 'Text incipit (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'y', 'Link text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', '2', 'System code (NR) MARC code that identifies the encoding system used to transcribe the musical notation in subfield $p (Musical notation). Use of subfield $2 is mandatory if subfield $p is present. Code from: Musical Incipit Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 032 file: www.loc.gov/marc/bibliographic/concise/bd032.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_032_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_032_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_032_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_032_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', 'a', 'Postal registration number (NR) Numbers are right justified and each unused position contains a zero. The hyphen that may appear between the third and fourth digits on printed sources is not carried in the MARC record; it may be generated.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', 'b', 'Source agency assigning number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 032 file: www.loc.gov/marc/bibliographic/concise/bd032.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_032_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_032_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_032_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_032_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', 'a', 'Postal registration number (NR) Numbers are right justified and each unused position contains a zero. The hyphen that may appear between the third and fourth digits on printed sources is not carried in the MARC record; it may be generated.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', 'b', 'Source agency assigning number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 035 file: www.loc.gov/marc/bibliographic/concise/bd035.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_035_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_035_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_035_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_035_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', 'a', 'System control number (NR) MARC code (enclosed in parentheses) of the organization originating the system control number, followed immediately by the number. See Appendix I: Organization Code Sources for a listing of sources used in MARC 21 records.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', 'z', 'Canceled/invalid control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 035 file: www.loc.gov/marc/bibliographic/concise/bd035.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_035_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_035_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_035_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_035_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', 'a', 'System control number (NR) MARC code (enclosed in parentheses) of the organization originating the system control number, followed immediately by the number. See Appendix I: Organization Code Sources for a listing of sources used in MARC 21 records.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', 'z', 'Canceled/invalid control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 036 file: www.loc.gov/marc/bibliographic/concise/bd036.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_036_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_036_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_036_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_036_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', 'a', 'Original study number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', 'b', 'Source agency assigning number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 036 file: www.loc.gov/marc/bibliographic/concise/bd036.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_036_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_036_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_036_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_036_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', 'a', 'Original study number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', 'b', 'Source agency assigning number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 038 file: www.loc.gov/marc/bibliographic/concise/bd038.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_038_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_038_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_038_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_038_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '038', 'a', 'Record content licensor (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '038', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '038', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 038 file: www.loc.gov/marc/bibliographic/concise/bd038.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_038_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_038_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_038_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_038_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '038', 'a', 'Record content licensor (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '038', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '038', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 042 file: www.loc.gov/marc/bibliographic/concise/bd042.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_042_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_042_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_042_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_042_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '042', 'a', 'Authentication code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 042 file: www.loc.gov/marc/bibliographic/concise/bd042.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_042_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_042_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_042_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_042_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '042', 'a', 'Authentication code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 044 file: www.loc.gov/marc/bibliographic/concise/bd044.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_044_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_044_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_044_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_044_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', 'a', 'MARC country code (R) Code appearing in 008/15-17 is given as the first subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', 'b', 'Local subentity code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', 'c', 'ISO country code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', '2', 'Source of local subentity code (R) Source from which the local code was assigned. Code from: Country Code and Term Source Codes.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 044 file: www.loc.gov/marc/bibliographic/concise/bd044.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_044_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_044_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_044_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_044_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', 'a', 'MARC country code (R) Code appearing in 008/15-17 is given as the first subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', 'b', 'Local subentity code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', 'c', 'ISO country code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', '2', 'Source of local subentity code (R) Source from which the local code was assigned. Code from: Country Code and Term Source Codes.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 045 file: www.loc.gov/marc/bibliographic/concise/bd045.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_045_ind_1$ident$, - BTRIM($label$First - Type of time period in subfield $b or $c - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '#', 'Subfield $b or $c not present', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '0', 'Single date/time', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '1', 'Multiple single dates/times - Multiple $b and/or $c subfields are present, each - containing a date/time.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '2', 'Range of dates/times - Two $b and/or $c subfields are present and contain a - range of dates/times.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_045_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', 'a', 'Time period code (R) Four-character alphanumeric code derived from the "Time Period Code Table" for B.C. and A.D. time periods. Table is found in MARC 21 Format for Bibliographic Data under the description of field 045.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', 'b', 'Formatted 9999 B.C. through C.E. time period (R) Specific time period recorded in the pattern yyyymmddhh and preceded by a code for the era (c for B.C.; d for C.E.).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', 'c', 'Formatted pre-9999 B.C. time period (R) Formatted time period that consists of as many numeric characters as are needed to represent the number of pre-9999 years B.C.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 045 file: www.loc.gov/marc/bibliographic/concise/bd045.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_045_ind_1$ident$, - BTRIM($label$First - Type of time period in subfield $b or $c - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '#', 'Subfield $b or $c not present', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '0', 'Single date/time', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '1', 'Multiple single dates/times - Multiple $b and/or $c subfields are present, each - containing a date/time.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '2', 'Range of dates/times - Two $b and/or $c subfields are present and contain a - range of dates/times.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_045_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', 'a', 'Time period code (R) Four-character alphanumeric code derived from the "Time Period Code Table" for B.C. and A.D. time periods. Table is found in MARC 21 Format for Bibliographic Data under the description of field 045.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', 'b', 'Formatted 9999 B.C. through C.E. time period (R) Specific time period recorded in the pattern yyyymmddhh and preceded by a code for the era (c for B.C.; d for C.E.).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', 'c', 'Formatted pre-9999 B.C. time period (R) Formatted time period that consists of as many numeric characters as are needed to represent the number of pre-9999 years B.C.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 047 file: www.loc.gov/marc/bibliographic/concise/bd047.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_047_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_047_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_047_ind_2$ident$, - BTRIM($label$Second - Source of code - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_047_ind_2', '#', 'MARC musical composition code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_047_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '047', 'a', 'Form of musical composition code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '047', '2', 'Source of code (NR) A code that identifies the source from which the musical composition code was assigned. Code from: Musical Composition Form Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '047', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 047 file: www.loc.gov/marc/bibliographic/concise/bd047.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_047_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_047_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_047_ind_2$ident$, - BTRIM($label$Second - Source of code - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_047_ind_2', '#', 'MARC musical composition code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_047_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '047', 'a', 'Form of musical composition code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '047', '2', 'Source of code (NR) A code that identifies the source from which the musical composition code was assigned. Code from: Musical Composition Form Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '047', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 048 file: www.loc.gov/marc/bibliographic/concise/bd048.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_048_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_048_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_048_ind_2$ident$, - BTRIM($label$Second - Source of code - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_048_ind_2', '#', 'MARC code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_048_ind_2', '7', 'Source specified in subfield ‡2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', 'a', 'Performer or ensemble (R) Two-character code for a performer or ensemble (from the list below) and, if applicable, a two-digit number specifying the number of parts.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', 'b', 'Soloist (R) Two-character alphabetic code for a soloist (from the list below) and, if applicable, a two-digit number specifying the number of parts.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', '2', 'Source of code (NR) Code from: Musical Instrumentation and Voice Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields. MARC 21 Instruments or Voices Codes','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 048 file: www.loc.gov/marc/bibliographic/concise/bd048.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_048_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_048_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_048_ind_2$ident$, - BTRIM($label$Second - Source of code - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_048_ind_2', '#', 'MARC code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_048_ind_2', '7', 'Source specified in subfield ‡2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', 'a', 'Performer or ensemble (R) Two-character code for a performer or ensemble (from the list below) and, if applicable, a two-digit number specifying the number of parts.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', 'b', 'Soloist (R) Two-character alphabetic code for a soloist (from the list below) and, if applicable, a two-digit number specifying the number of parts.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', '2', 'Source of code (NR) Code from: Musical Instrumentation and Voice Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields. MARC 21 Instruments or Voices Codes','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 051 file: www.loc.gov/marc/bibliographic/concise/bd051.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_051_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_051_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_051_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_051_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', 'b', 'Item number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', 'c', 'Copy information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 051 file: www.loc.gov/marc/bibliographic/concise/bd051.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_051_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_051_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_051_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_051_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', 'b', 'Item number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', 'c', 'Copy information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 061 file: www.loc.gov/marc/bibliographic/concise/bd061.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_061_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_061_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_061_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_061_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', 'b', 'Item number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', 'c', 'Copy information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 061 file: www.loc.gov/marc/bibliographic/concise/bd061.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_061_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_061_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_061_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_061_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', 'b', 'Item number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', 'c', 'Copy information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 066 file: www.loc.gov/marc/bibliographic/concise/bd066.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_066_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_066_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_066_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_066_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '066', 'a', 'Primary G0 character set (NR) Code is the Intermediate and Final characters of the escape sequence that designates and invokes the default G0 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '066', 'b', 'Primary G1 character set (NR) Code is composed of the Intermediate and Final characters of the escape sequence that designates and invokes the default G1 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '066', 'c', 'Alternate G0 or G1 character set (R) Code is the Intermediate and Final characters of each escape sequence that will be used to designate an alternate graphic character set used in the record.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 066 file: www.loc.gov/marc/bibliographic/concise/bd066.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_066_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_066_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_066_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_066_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '066', 'a', 'Primary G0 character set (NR) Code is the Intermediate and Final characters of the escape sequence that designates and invokes the default G0 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '066', 'b', 'Primary G1 character set (NR) Code is composed of the Intermediate and Final characters of the escape sequence that designates and invokes the default G1 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '066', 'c', 'Alternate G0 or G1 character set (R) Code is the Intermediate and Final characters of each escape sequence that will be used to designate an alternate graphic character set used in the record.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 071 file: www.loc.gov/marc/bibliographic/concise/bd071.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_071_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_071_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_071_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_071_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', 'b', 'Item number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', 'c', 'Copy information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 071 file: www.loc.gov/marc/bibliographic/concise/bd071.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_071_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_071_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_071_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_071_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', 'b', 'Item number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', 'c', 'Copy information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 072 file: www.loc.gov/marc/bibliographic/concise/bd072.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_072_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_072_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_072_ind_2$ident$, - BTRIM($label$Second - Code source - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_072_ind_2', '0', 'NAL subject category code list', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_072_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', 'a', 'Subject category code (NR) Code for the broad subject associated with the item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', 'x', 'Subject category code subdivision (R) Level of specificity within the broader category coded in subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', '2', 'Source (NR) MARC code that identifies the thesaurus used to assign the subject category code when the second indicator position contains value 7. Code from: Subject Category Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 072 file: www.loc.gov/marc/bibliographic/concise/bd072.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_072_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_072_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_072_ind_2$ident$, - BTRIM($label$Second - Code source - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_072_ind_2', '0', 'NAL subject category code list', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_072_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', 'a', 'Subject category code (NR) Code for the broad subject associated with the item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', 'x', 'Subject category code subdivision (R) Level of specificity within the broader category coded in subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', '2', 'Source (NR) MARC code that identifies the thesaurus used to assign the subject category code when the second indicator position contains value 7. Code from: Subject Category Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 074 file: www.loc.gov/marc/bibliographic/concise/bd074.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_074_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_074_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_074_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_074_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '074', 'a', 'GPO item number (NR) GPO Item No. : may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '074', 'z', 'Canceled/invalid GPO item number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '074', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 074 file: www.loc.gov/marc/bibliographic/concise/bd074.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_074_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_074_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_074_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_074_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '074', 'a', 'GPO item number (NR) GPO Item No. : may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '074', 'z', 'Canceled/invalid GPO item number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '074', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 09x file: www.loc.gov/marc/bibliographic/concise/bd09x.html --- category: biblio tag: 222 file: www.loc.gov/marc/bibliographic/concise/bd222.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_222_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_222_ind_2$ident$, - BTRIM($label$Second - Nonfiling characters - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', 'a', 'Key title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', 'b', 'Qualifying information (NR) Parenthetical information that that qualifies the title to make it unique.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 222 file: www.loc.gov/marc/bibliographic/concise/bd222.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_222_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_222_ind_2$ident$, - BTRIM($label$Second - Nonfiling characters - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', 'a', 'Key title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', 'b', 'Qualifying information (NR) Parenthetical information that that qualifies the title to make it unique.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 242 file: www.loc.gov/marc/bibliographic/concise/bd242.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_242_ind_1$ident$, - BTRIM($label$First - Title added entry - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_1', '0', 'No added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_1', '1', 'Added entry', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_242_ind_2$ident$, - BTRIM($label$Second - Nonfiling characters - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'a', 'Title (NR) Title proper, exclusive of the designation of number or name of part and any alternative title.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'b', 'Remainder of title (NR) Includes parallel, alternative, and other title information.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'c', 'Statement of responsibility, etc. (NR) Statement of responsibility and/or any remaining title statement data that are not more appropriately contained in one of the other subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'h', 'Medium (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'n', 'Number of part/section of a work (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'p', 'Name of part/section of a work (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'y', 'Language code of translated title (NR) Code from: MARC Code List for Languages.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 242 file: www.loc.gov/marc/bibliographic/concise/bd242.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_242_ind_1$ident$, - BTRIM($label$First - Title added entry - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_1', '0', 'No added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_1', '1', 'Added entry', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_242_ind_2$ident$, - BTRIM($label$Second - Nonfiling characters - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'a', 'Title (NR) Title proper, exclusive of the designation of number or name of part and any alternative title.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'b', 'Remainder of title (NR) Includes parallel, alternative, and other title information.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'c', 'Statement of responsibility, etc. (NR) Statement of responsibility and/or any remaining title statement data that are not more appropriately contained in one of the other subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'h', 'Medium (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'n', 'Number of part/section of a work (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'p', 'Name of part/section of a work (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'y', 'Language code of translated title (NR) Code from: MARC Code List for Languages.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 254 file: www.loc.gov/marc/bibliographic/concise/bd254.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_254_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_254_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_254_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_254_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '254', 'a', 'Musical presentation statement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '254', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '254', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 254 file: www.loc.gov/marc/bibliographic/concise/bd254.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_254_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_254_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_254_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_254_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '254', 'a', 'Musical presentation statement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '254', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '254', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 258 file: www.loc.gov/marc/bibliographic/concise/bd258.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_258_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_258_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_258_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_258_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', 'a', 'Issuing jurisdiction (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', 'b', 'Denomination (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 258 file: www.loc.gov/marc/bibliographic/concise/bd258.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_258_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_258_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_258_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_258_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', 'a', 'Issuing jurisdiction (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', 'b', 'Denomination (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 263 file: www.loc.gov/marc/bibliographic/concise/bd263.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_263_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_263_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_263_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_263_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '263', 'a', 'Projected publication date (NR) Six-digit date recorded in the pattern yyyymm (4 digits for the year; 2 digits for the month). A hyphen (-) is used for an unknown portion of the date.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '263', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '263', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 263 file: www.loc.gov/marc/bibliographic/concise/bd263.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_263_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_263_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_263_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_263_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '263', 'a', 'Projected publication date (NR) Six-digit date recorded in the pattern yyyymm (4 digits for the year; 2 digits for the month). A hyphen (-) is used for an unknown portion of the date.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '263', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '263', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 306 file: www.loc.gov/marc/bibliographic/concise/bd306.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_306_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_306_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_306_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_306_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '306', 'a', 'Playing time (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '306', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '306', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 306 file: www.loc.gov/marc/bibliographic/concise/bd306.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_306_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_306_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_306_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_306_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '306', 'a', 'Playing time (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '306', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '306', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 307 file: www.loc.gov/marc/bibliographic/concise/bd307.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_307_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_307_ind_1', '#', 'Hours', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_307_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_307_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_307_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', 'a', 'Hours (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', 'b', 'Additional information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 307 file: www.loc.gov/marc/bibliographic/concise/bd307.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_307_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_307_ind_1', '#', 'Hours', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_307_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_307_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_307_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', 'a', 'Hours (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', 'b', 'Additional information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 342 file: www.loc.gov/marc/bibliographic/concise/bd342.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_342_ind_1$ident$, - BTRIM($label$First - Geospatial reference dimension - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_1', '0', 'Horizontal coordinate system', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_1', '1', 'Vertical coordinate system', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_342_ind_2$ident$, - BTRIM($label$Second - Geospatial reference method - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '0', 'Geographic', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '1', 'Map projection', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '2', 'Grid coordinate system', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '3', 'Local planar', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '4', 'Local', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '5', 'Geodetic model', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '6', 'Altitude', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '7', 'Method specified in $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '8', 'Depth', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'a', 'Name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'b', 'Coordinate units or distance units (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'c', 'Latitude resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'd', 'Longitude resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'e', 'Standard parallel or oblique line latitude (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'f', 'Oblique line longitude (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'g', 'Longitude of central meridian or projection center (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'h', 'Latitude of projection center or projection origin (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'i', 'False easting (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'j', 'False northing (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'k', 'Scale factor (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'l', 'Height of perspective point above surface (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'm', 'Azimuthal angle (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'n', 'Azimuth measure point longitude or straight vertical longitude from pole (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'o', 'Landsat number and path number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'p', 'Zone identifier (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'q', 'Ellipsoid name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'r', 'Semi-major axis (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 's', 'Denominator of flattening ratio (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 't', 'Vertical resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'u', 'Vertical encoding method (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'v', 'Local planar, local, or other projection or grid description (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'w', 'Local planar or local georeference information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', '2', 'Reference method used (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 342 file: www.loc.gov/marc/bibliographic/concise/bd342.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_342_ind_1$ident$, - BTRIM($label$First - Geospatial reference dimension - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_1', '0', 'Horizontal coordinate system', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_1', '1', 'Vertical coordinate system', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_342_ind_2$ident$, - BTRIM($label$Second - Geospatial reference method - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '0', 'Geographic', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '1', 'Map projection', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '2', 'Grid coordinate system', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '3', 'Local planar', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '4', 'Local', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '5', 'Geodetic model', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '6', 'Altitude', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '7', 'Method specified in $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '8', 'Depth', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'a', 'Name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'b', 'Coordinate units or distance units (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'c', 'Latitude resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'd', 'Longitude resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'e', 'Standard parallel or oblique line latitude (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'f', 'Oblique line longitude (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'g', 'Longitude of central meridian or projection center (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'h', 'Latitude of projection center or projection origin (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'i', 'False easting (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'j', 'False northing (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'k', 'Scale factor (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'l', 'Height of perspective point above surface (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'm', 'Azimuthal angle (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'n', 'Azimuth measure point longitude or straight vertical longitude from pole (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'o', 'Landsat number and path number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'p', 'Zone identifier (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'q', 'Ellipsoid name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'r', 'Semi-major axis (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 's', 'Denominator of flattening ratio (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 't', 'Vertical resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'u', 'Vertical encoding method (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'v', 'Local planar, local, or other projection or grid description (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'w', 'Local planar or local georeference information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', '2', 'Reference method used (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 343 file: www.loc.gov/marc/bibliographic/concise/bd343.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_343_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_343_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_343_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_343_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'a', 'Planar coordinate encoding method (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'b', 'Planar distance units (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'c', 'Abscissa resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'd', 'Ordinate resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'e', 'Distance resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'f', 'Bearing resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'g', 'Bearing units (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'h', 'Bearing reference direction (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'i', 'Bearing reference meridian (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 343 file: www.loc.gov/marc/bibliographic/concise/bd343.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_343_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_343_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_343_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_343_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'a', 'Planar coordinate encoding method (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'b', 'Planar distance units (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'c', 'Abscissa resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'd', 'Ordinate resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'e', 'Distance resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'f', 'Bearing resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'g', 'Bearing units (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'h', 'Bearing reference direction (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'i', 'Bearing reference meridian (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 351 file: www.loc.gov/marc/bibliographic/concise/bd351.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_351_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_351_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_351_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_351_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', 'a', 'Organization (R) Manner in which the described materials are subdivided into smaller units, such as how record groups are divided into series and series into subseries. For computer files, contains information about the file structure or the name of the computer software or system.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', 'b', 'Arrangement (R) Pattern of arrangement of materials within a unit (e.g., alphabetical, chronological, by country, by office of origin, etc.).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', 'c', 'Hierarchical level (NR) Hierarchical position of the described materials relative to other records from the same source.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', '3', 'Materials specified (NR) Part of the described materials to which the field applies.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 351 file: www.loc.gov/marc/bibliographic/concise/bd351.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_351_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_351_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_351_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_351_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', 'a', 'Organization (R) Manner in which the described materials are subdivided into smaller units, such as how record groups are divided into series and series into subseries. For computer files, contains information about the file structure or the name of the computer software or system.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', 'b', 'Arrangement (R) Pattern of arrangement of materials within a unit (e.g., alphabetical, chronological, by country, by office of origin, etc.).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', 'c', 'Hierarchical level (NR) Hierarchical position of the described materials relative to other records from the same source.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', '3', 'Materials specified (NR) Part of the described materials to which the field applies.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 352 file: www.loc.gov/marc/bibliographic/concise/bd352.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_352_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_352_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_352_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_352_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'a', 'Direct reference method (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'b', 'Object type (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'c', 'Object count (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'd', 'Row count (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'e', 'Column count (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'f', 'Vertical count (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'g', 'VPF topology level (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'i', 'Indirect reference description (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'q', 'Format of the digital image (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 352 file: www.loc.gov/marc/bibliographic/concise/bd352.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_352_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_352_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_352_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_352_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'a', 'Direct reference method (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'b', 'Object type (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'c', 'Object count (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'd', 'Row count (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'e', 'Column count (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'f', 'Vertical count (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'g', 'VPF topology level (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'i', 'Indirect reference description (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'q', 'Format of the digital image (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 355 file: www.loc.gov/marc/bibliographic/concise/bd355.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_355_ind_1$ident$, - BTRIM($label$First - Controlled element - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '0', 'Document', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '1', 'Title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '2', 'Abstract', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '3', 'Contents note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '4', 'Author', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '5', 'Record', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '8', 'None of the above', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_355_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'a', 'Security classification (NR) Security classification (e.g., Unclassified, Secret, Confidential) associated with the document, title, abstract, contents note, or author.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'b', 'Handling instructions (R) Handling instructions, e.g., who internally in the organization may handle or see the document, title, abstract, contents note, or author.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'c', 'External dissemination information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'd', 'Downgrading or declassification event (NR) Data about the security classification, often a phrase pertaining to downgrading or declassification, e.g., OADR (which stands for "Original Agency Determination Required"). Dates relating to the downgrading or declassification are recorded in subfields $g or $h.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'e', 'Classification system (NR) Name of a security classification system, not necessarily come from a controlled list.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'f', 'Country of origin code (NR) Two- or three-character alphabetic MARC code indicating the country of origin of the classification. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'g', 'Downgrading date (NR) Date pertaining to the downgrading of the document, title, abstract, contents note, or author. Downgrading involves changes to security classification, from a higher level to lower level of classification.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'h', 'Declassification date (NR) Date pertaining to the declassification of the document, title, abstract, contents note, or author. Declassification involves the removal of any security classification on an item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'j', 'Authorization (R) Information that identifies by whose authority a change in security classification was made. The subfield contains a MARC code of the authorizing agency. See Appendix I: Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 355 file: www.loc.gov/marc/bibliographic/concise/bd355.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_355_ind_1$ident$, - BTRIM($label$First - Controlled element - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '0', 'Document', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '1', 'Title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '2', 'Abstract', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '3', 'Contents note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '4', 'Author', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '5', 'Record', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '8', 'None of the above', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_355_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'a', 'Security classification (NR) Security classification (e.g., Unclassified, Secret, Confidential) associated with the document, title, abstract, contents note, or author.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'b', 'Handling instructions (R) Handling instructions, e.g., who internally in the organization may handle or see the document, title, abstract, contents note, or author.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'c', 'External dissemination information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'd', 'Downgrading or declassification event (NR) Data about the security classification, often a phrase pertaining to downgrading or declassification, e.g., OADR (which stands for "Original Agency Determination Required"). Dates relating to the downgrading or declassification are recorded in subfields $g or $h.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'e', 'Classification system (NR) Name of a security classification system, not necessarily come from a controlled list.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'f', 'Country of origin code (NR) Two- or three-character alphabetic MARC code indicating the country of origin of the classification. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'g', 'Downgrading date (NR) Date pertaining to the downgrading of the document, title, abstract, contents note, or author. Downgrading involves changes to security classification, from a higher level to lower level of classification.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'h', 'Declassification date (NR) Date pertaining to the declassification of the document, title, abstract, contents note, or author. Declassification involves the removal of any security classification on an item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'j', 'Authorization (R) Information that identifies by whose authority a change in security classification was made. The subfield contains a MARC code of the authorizing agency. See Appendix I: Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 357 file: www.loc.gov/marc/bibliographic/concise/bd357.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_357_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_357_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_357_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_357_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'a', 'Originator control term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'b', 'Originating agency (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'c', 'Authorized recipients of material (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'g', 'Other restrictions (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 357 file: www.loc.gov/marc/bibliographic/concise/bd357.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_357_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_357_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_357_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_357_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'a', 'Originator control term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'b', 'Originating agency (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'c', 'Authorized recipients of material (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'g', 'Other restrictions (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 362 file: www.loc.gov/marc/bibliographic/concise/bd362.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_362_ind_1$ident$, - BTRIM($label$First - Format of date - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_362_ind_1', '0', 'Formatted style', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_362_ind_1', '1', 'Unformatted note', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_362_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_362_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', 'a', 'Dates of publication and/or sequential designation (NR) When both a sequential designation and a chronological designation are given, the chronological one is enclosed in parentheses.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', 'z', 'Source of information (NR) Citation of the source of information contained in subfield $a; used only when the first indicator position contains value 1 (unformatted notes).','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 362 file: www.loc.gov/marc/bibliographic/concise/bd362.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_362_ind_1$ident$, - BTRIM($label$First - Format of date - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_362_ind_1', '0', 'Formatted style', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_362_ind_1', '1', 'Unformatted note', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_362_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_362_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', 'a', 'Dates of publication and/or sequential designation (NR) When both a sequential designation and a chronological designation are given, the chronological one is enclosed in parentheses.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', 'z', 'Source of information (NR) Citation of the source of information contained in subfield $a; used only when the first indicator position contains value 1 (unformatted notes).','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 365 file: www.loc.gov/marc/bibliographic/concise/bd365.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_365_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_365_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_365_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_365_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'a', 'Price type code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'b', 'Price amount (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'c', 'Currency code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'd', 'Unit of pricing (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'e', 'Price note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'f', 'Price effective from (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'g', 'Price effective until (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'h', 'Tax rate 1 (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'i', 'Tax rate 2 (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'j', 'ISO country code (NR) Code from: ISO 3166-1, Codes for the Representation of Names of Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'k', 'MARC country code (NR) Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'm', 'Identification of pricing entity (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', '2', 'Source of price type code (NR) Code from: Price Type Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 365 file: www.loc.gov/marc/bibliographic/concise/bd365.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_365_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_365_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_365_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_365_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'a', 'Price type code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'b', 'Price amount (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'c', 'Currency code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'd', 'Unit of pricing (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'e', 'Price note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'f', 'Price effective from (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'g', 'Price effective until (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'h', 'Tax rate 1 (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'i', 'Tax rate 2 (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'j', 'ISO country code (NR) Code from: ISO 3166-1, Codes for the Representation of Names of Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'k', 'MARC country code (NR) Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'm', 'Identification of pricing entity (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', '2', 'Source of price type code (NR) Code from: Price Type Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 366 file: www.loc.gov/marc/bibliographic/concise/bd366.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_366_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_366_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_366_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_366_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'a', 'Publishers'' compressed title identification (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'b', 'Detailed date of publication (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'c', 'Availability status code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'd', 'Expected next availability date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'e', 'Note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'f', 'Publisher''s discount category (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'g', 'Date made out of print (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'j', 'ISO country code (NR) Code from: ISO 3166-1, Codes for the Representation of Names of Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'k', 'MARC country code (NR) Code for the country in which the information in the field is applicable. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'm', 'Identification of agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', '2', 'Source of availability status code (NR) MARC code that identifies the source of the availability status code recorded in subfield $c. Code from: Availability Status Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 366 file: www.loc.gov/marc/bibliographic/concise/bd366.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_366_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_366_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_366_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_366_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'a', 'Publishers'' compressed title identification (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'b', 'Detailed date of publication (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'c', 'Availability status code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'd', 'Expected next availability date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'e', 'Note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'f', 'Publisher''s discount category (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'g', 'Date made out of print (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'j', 'ISO country code (NR) Code from: ISO 3166-1, Codes for the Representation of Names of Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'k', 'MARC country code (NR) Code for the country in which the information in the field is applicable. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'm', 'Identification of agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', '2', 'Source of availability status code (NR) MARC code that identifies the source of the availability status code recorded in subfield $c. Code from: Availability Status Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 504 file: www.loc.gov/marc/bibliographic/concise/bd504.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_504_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_504_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_504_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_504_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', 'a', 'Bibliography, etc. note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', 'b', 'Number of references (NR) Used to indicate the significance of a bibliography.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 504 file: www.loc.gov/marc/bibliographic/concise/bd504.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_504_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_504_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_504_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_504_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', 'a', 'Bibliography, etc. note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', 'b', 'Number of references (NR) Used to indicate the significance of a bibliography.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 511 file: www.loc.gov/marc/bibliographic/concise/bd511.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_511_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_511_ind_1', '0', 'No display constant generated', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_511_ind_1', '1', 'Cast', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_511_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_511_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '511', 'a', 'Participant or performer note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '511', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '511', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 511 file: www.loc.gov/marc/bibliographic/concise/bd511.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_511_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_511_ind_1', '0', 'No display constant generated', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_511_ind_1', '1', 'Cast', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_511_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_511_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '511', 'a', 'Participant or performer note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '511', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '511', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 513 file: www.loc.gov/marc/bibliographic/concise/bd513.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_513_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_513_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_513_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_513_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', 'a', 'Type of report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', 'b', 'Period covered (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 513 file: www.loc.gov/marc/bibliographic/concise/bd513.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_513_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_513_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_513_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_513_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', 'a', 'Type of report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', 'b', 'Period covered (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 514 file: www.loc.gov/marc/bibliographic/concise/bd514.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_514_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_514_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_514_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_514_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'a', 'Attribute accuracy report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'b', 'Attribute accuracy value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'c', 'Attribute accuracy explanation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'd', 'Logical consistency report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'e', 'Completeness report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'f', 'Horizontal position accuracy report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'g', 'Horizontal position accuracy value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'h', 'Horizontal position accuracy explanation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'i', 'Vertical positional accuracy report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'j', 'Vertical positional accuracy value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'k', 'Vertical positional accuracy explanation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'm', 'Cloud cover (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'u', 'Uniform Resource Identifier (R) Uniform Resource Identifier (URI), for example a URL or URN, which provides electronic access data in a standard syntax. This data can be used for automated access to an electronic item using one of the Internet protocols.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'z', 'Display note (R) Introduces the data in the field, when needed.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 514 file: www.loc.gov/marc/bibliographic/concise/bd514.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_514_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_514_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_514_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_514_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'a', 'Attribute accuracy report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'b', 'Attribute accuracy value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'c', 'Attribute accuracy explanation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'd', 'Logical consistency report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'e', 'Completeness report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'f', 'Horizontal position accuracy report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'g', 'Horizontal position accuracy value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'h', 'Horizontal position accuracy explanation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'i', 'Vertical positional accuracy report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'j', 'Vertical positional accuracy value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'k', 'Vertical positional accuracy explanation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'm', 'Cloud cover (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'u', 'Uniform Resource Identifier (R) Uniform Resource Identifier (URI), for example a URL or URN, which provides electronic access data in a standard syntax. This data can be used for automated access to an electronic item using one of the Internet protocols.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'z', 'Display note (R) Introduces the data in the field, when needed.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 516 file: www.loc.gov/marc/bibliographic/concise/bd516.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_516_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_516_ind_1', '#', 'Type of file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_516_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_516_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_516_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '516', 'a', 'Type of computer file or data note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '516', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '516', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 516 file: www.loc.gov/marc/bibliographic/concise/bd516.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_516_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_516_ind_1', '#', 'Type of file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_516_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_516_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_516_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '516', 'a', 'Type of computer file or data note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '516', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '516', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 521 file: www.loc.gov/marc/bibliographic/concise/bd521.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_521_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '#', 'Audience', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '0', 'Reading grade level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '1', 'Interest age level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '2', 'Interest grade level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '3', 'Special audience characteristics', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '4', 'Motivation/interest level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_521_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', 'a', 'Target audience note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', 'b', 'Source (NR) Name or abbreviation of the agency or entity that determined the target audience of the item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 521 file: www.loc.gov/marc/bibliographic/concise/bd521.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_521_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '#', 'Audience', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '0', 'Reading grade level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '1', 'Interest age level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '2', 'Interest grade level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '3', 'Special audience characteristics', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '4', 'Motivation/interest level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_521_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', 'a', 'Target audience note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', 'b', 'Source (NR) Name or abbreviation of the agency or entity that determined the target audience of the item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 522 file: www.loc.gov/marc/bibliographic/concise/bd522.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_522_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_522_ind_1', '#', 'Geographic coverage', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_522_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_522_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_522_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '522', 'a', 'Geographic coverage note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '522', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '522', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 522 file: www.loc.gov/marc/bibliographic/concise/bd522.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_522_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_522_ind_1', '#', 'Geographic coverage', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_522_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_522_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_522_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '522', 'a', 'Geographic coverage note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '522', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '522', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 524 file: www.loc.gov/marc/bibliographic/concise/bd524.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_524_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_524_ind_1', '#', 'Cite as', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_524_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_524_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_524_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', 'a', 'Preferred citation of described materials note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '2', 'Source of schema used (NR) Code from: Citation Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 524 file: www.loc.gov/marc/bibliographic/concise/bd524.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_524_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_524_ind_1', '#', 'Cite as', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_524_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_524_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_524_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', 'a', 'Preferred citation of described materials note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '2', 'Source of schema used (NR) Code from: Citation Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 525 file: www.loc.gov/marc/bibliographic/concise/bd525.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_525_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_525_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_525_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_525_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '525', 'a', 'Supplement note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '525', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '525', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 525 file: www.loc.gov/marc/bibliographic/concise/bd525.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_525_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_525_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_525_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_525_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '525', 'a', 'Supplement note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '525', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '525', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 526 file: www.loc.gov/marc/bibliographic/concise/bd526.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_526_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_526_ind_1', '0', 'Reading program', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_526_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_526_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_526_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'a', 'Program name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'b', 'Interest level (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'c', 'Reading level (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'd', 'Title point value (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'i', 'Display text (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'x', 'Nonpublic note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', '8', 'Field link and sequence number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 526 file: www.loc.gov/marc/bibliographic/concise/bd526.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_526_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_526_ind_1', '0', 'Reading program', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_526_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_526_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_526_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'a', 'Program name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'b', 'Interest level (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'c', 'Reading level (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'd', 'Title point value (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'i', 'Display text (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'x', 'Nonpublic note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', '8', 'Field link and sequence number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 530 file: www.loc.gov/marc/bibliographic/concise/bd530.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_530_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_530_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_530_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_530_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'a', 'Additional physical form available note (NR) For continuing resources, availability source, availability conditions, and order number information are included in subfield $a.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'b', 'Availability source (NR) Organizational unit or vendor from which the additional physical form may be acquired.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'c', 'Availability conditions (NR) Terms under which the additional physical form of the materials is available (e.g., Photocopies at cost).','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'd', 'Order number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'u', 'Uniform Resource Identifier (R) Uniform Resource Identifier (URI), for example a URL or URN, which provides electronic access data in a standard syntax. This data can be used for automated access to an electronic item using one of the Internet protocols.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 530 file: www.loc.gov/marc/bibliographic/concise/bd530.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_530_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_530_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_530_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_530_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'a', 'Additional physical form available note (NR) For continuing resources, availability source, availability conditions, and order number information are included in subfield $a.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'b', 'Availability source (NR) Organizational unit or vendor from which the additional physical form may be acquired.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'c', 'Availability conditions (NR) Terms under which the additional physical form of the materials is available (e.g., Photocopies at cost).','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'd', 'Order number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'u', 'Uniform Resource Identifier (R) Uniform Resource Identifier (URI), for example a URL or URN, which provides electronic access data in a standard syntax. This data can be used for automated access to an electronic item using one of the Internet protocols.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 535 file: www.loc.gov/marc/bibliographic/concise/bd535.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_535_ind_1$ident$, - BTRIM($label$First - Custodial role - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_535_ind_1', '1', 'Holder of originals', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_535_ind_1', '2', 'Holder of duplicates', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_535_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_535_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'a', 'Custodian (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'b', 'Postal address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'c', 'Country (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'd', 'Telecommunications address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'g', 'Repository location code (NR) Two- or three-character MARC code for the country of the repository holding originals or duplicates of the material. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 535 file: www.loc.gov/marc/bibliographic/concise/bd535.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_535_ind_1$ident$, - BTRIM($label$First - Custodial role - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_535_ind_1', '1', 'Holder of originals', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_535_ind_1', '2', 'Holder of duplicates', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_535_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_535_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'a', 'Custodian (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'b', 'Postal address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'c', 'Country (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'd', 'Telecommunications address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'g', 'Repository location code (NR) Two- or three-character MARC code for the country of the repository holding originals or duplicates of the material. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 536 file: www.loc.gov/marc/bibliographic/concise/bd536.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_536_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_536_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_536_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_536_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'a', 'Text of note (NR) Information concerning the sponsors or funding agencies.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'b', 'Contract number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'c', 'Grant number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'd', 'Undifferentiated number (R) Undifferentiated number associated with the material that identifies a project, task or work unit number.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'e', 'Program element number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'f', 'Project number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'g', 'Task number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'h', 'Work unit number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 536 file: www.loc.gov/marc/bibliographic/concise/bd536.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_536_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_536_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_536_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_536_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'a', 'Text of note (NR) Information concerning the sponsors or funding agencies.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'b', 'Contract number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'c', 'Grant number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'd', 'Undifferentiated number (R) Undifferentiated number associated with the material that identifies a project, task or work unit number.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'e', 'Program element number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'f', 'Project number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'g', 'Task number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'h', 'Work unit number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 538 file: www.loc.gov/marc/bibliographic/concise/bd538.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_538_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_538_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_538_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_538_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', 'a', 'System details note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', 'i', 'Display text (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 538 file: www.loc.gov/marc/bibliographic/concise/bd538.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_538_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_538_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_538_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_538_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', 'a', 'System details note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', 'i', 'Display text (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 541 file: www.loc.gov/marc/bibliographic/concise/bd541.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_541_ind_1$ident$, - BTRIM($label$First - Privacy - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_541_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'a', 'Source of acquisition (NR) Name of the person(s) or organization that is the source of the material.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'b', 'Address (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'c', 'Method of acquisition (NR) Terms under which a transfer of physical custody occurs, for example, by gift, bequest, loan, purchase, deposit.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'd', 'Date of acquisition (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'e', 'Accession number (NR) Identification code assigned to materials acquired in a single and separate transfer of custody.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'f', 'Owner (NR) Name of the individual or organization with legal custody over the described materials.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'h', 'Purchase price (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'n', 'Extent (R) Number of items acquired.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'o', 'Type of unit (R) Name of the unit of measurement, e.g., cartons.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 541 file: www.loc.gov/marc/bibliographic/concise/bd541.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_541_ind_1$ident$, - BTRIM($label$First - Privacy - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_541_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'a', 'Source of acquisition (NR) Name of the person(s) or organization that is the source of the material.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'b', 'Address (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'c', 'Method of acquisition (NR) Terms under which a transfer of physical custody occurs, for example, by gift, bequest, loan, purchase, deposit.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'd', 'Date of acquisition (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'e', 'Accession number (NR) Identification code assigned to materials acquired in a single and separate transfer of custody.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'f', 'Owner (NR) Name of the individual or organization with legal custody over the described materials.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'h', 'Purchase price (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'n', 'Extent (R) Number of items acquired.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'o', 'Type of unit (R) Name of the unit of measurement, e.g., cartons.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 544 file: www.loc.gov/marc/bibliographic/concise/bd544.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_544_ind_1$ident$, - BTRIM($label$First - Relationship - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_1', '0', 'Associated materials - Other materials identified in the note have the same provenance but reside in a - different repository.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_1', '1', 'Related materials - Other materials identified in the note share the sphere of activity, reside in - the same repository, but have different provenance.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_544_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'a', 'Custodian (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'b', 'Address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'c', 'Country (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'd', 'Title (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'e', 'Provenance (R) History of custody of the described materials since their creation, including any changes successive custodians made to them.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'n', 'Note (R) Entire text of the note that describes the other materials. Subfield $n may be used instead of the specific subfields for title of materials, custodian, and provenance.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 544 file: www.loc.gov/marc/bibliographic/concise/bd544.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_544_ind_1$ident$, - BTRIM($label$First - Relationship - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_1', '0', 'Associated materials - Other materials identified in the note have the same provenance but reside in a - different repository.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_1', '1', 'Related materials - Other materials identified in the note share the sphere of activity, reside in - the same repository, but have different provenance.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_544_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'a', 'Custodian (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'b', 'Address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'c', 'Country (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'd', 'Title (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'e', 'Provenance (R) History of custody of the described materials since their creation, including any changes successive custodians made to them.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'n', 'Note (R) Entire text of the note that describes the other materials. Subfield $n may be used instead of the specific subfields for title of materials, custodian, and provenance.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 545 file: www.loc.gov/marc/bibliographic/concise/bd545.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_545_ind_1$ident$, - BTRIM($label$First - Type of data - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_1', '0', 'Biographical sketch', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_1', '1', 'Administrative history', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_545_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', 'a', 'Biographical or historical data (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', 'b', 'Expansion (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 545 file: www.loc.gov/marc/bibliographic/concise/bd545.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_545_ind_1$ident$, - BTRIM($label$First - Type of data - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_1', '0', 'Biographical sketch', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_1', '1', 'Administrative history', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_545_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', 'a', 'Biographical or historical data (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', 'b', 'Expansion (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 547 file: www.loc.gov/marc/bibliographic/concise/bd547.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_547_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_547_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_547_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_547_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '547', 'a', 'Former title complexity note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '547', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '547', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 547 file: www.loc.gov/marc/bibliographic/concise/bd547.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_547_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_547_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_547_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_547_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '547', 'a', 'Former title complexity note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '547', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '547', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 552 file: www.loc.gov/marc/bibliographic/concise/bd552.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_552_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_552_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_552_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_552_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'a', 'Entity type label (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'b', 'Entity type definition and source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'c', 'Attribute label (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'd', 'Attribute definition and source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'e', 'Enumerated domain value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'f', 'Enumerated domain value definition and source (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'g', 'Range domain minimum and maximum (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'h', 'Codeset name and source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'i', 'Unrepresentable domain (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'j', 'Attribute units of measurement and resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'k', 'Beginning and ending date of attribute values (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'l', 'Attribute value accuracy (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'm', 'Attribute value accuracy explanation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'n', 'Attribute measurement frequency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'o', 'Entity and attribute overview (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'p', 'Entity and attribute detail citation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'z', 'Display note (R) Note that introduces the data in the field when needed.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 552 file: www.loc.gov/marc/bibliographic/concise/bd552.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_552_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_552_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_552_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_552_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'a', 'Entity type label (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'b', 'Entity type definition and source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'c', 'Attribute label (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'd', 'Attribute definition and source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'e', 'Enumerated domain value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'f', 'Enumerated domain value definition and source (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'g', 'Range domain minimum and maximum (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'h', 'Codeset name and source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'i', 'Unrepresentable domain (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'j', 'Attribute units of measurement and resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'k', 'Beginning and ending date of attribute values (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'l', 'Attribute value accuracy (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'm', 'Attribute value accuracy explanation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'n', 'Attribute measurement frequency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'o', 'Entity and attribute overview (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'p', 'Entity and attribute detail citation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'z', 'Display note (R) Note that introduces the data in the field when needed.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 556 file: www.loc.gov/marc/bibliographic/concise/bd556.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_556_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_556_ind_1', '#', 'Documentation - Used to generate the display constant Documentation:.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_556_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_556_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_556_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', 'a', 'Information about documentation note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', 'z', 'International Standard Book Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 556 file: www.loc.gov/marc/bibliographic/concise/bd556.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_556_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_556_ind_1', '#', 'Documentation - Used to generate the display constant Documentation:.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_556_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_556_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_556_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', 'a', 'Information about documentation note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', 'z', 'International Standard Book Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 562 file: www.loc.gov/marc/bibliographic/concise/bd562.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_562_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_562_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_562_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_562_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'a', 'Identifying markings (R) Markings on the support or imbedded in the medium that can be used to identify the copy of the described materials (e.g., watermarks, annotations, or captions).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'b', 'Copy identification (R) Information such as names, codes, numbers, or description used to distinguish one copy of the described materials from other copies.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'c', 'Version identification (R) Information such as names, codes, or descriptions used to identify a version that differs in content but is related across time to another version, such as an edition.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'd', 'Presentation format (R) Presentation format in which the recorded materials, regardless of their current medium, were intended to be used, seen, or heard (e.g., a film made for TV or a text intended for oral proclamation).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'e', 'Number of copies (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 562 file: www.loc.gov/marc/bibliographic/concise/bd562.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_562_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_562_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_562_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_562_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'a', 'Identifying markings (R) Markings on the support or imbedded in the medium that can be used to identify the copy of the described materials (e.g., watermarks, annotations, or captions).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'b', 'Copy identification (R) Information such as names, codes, numbers, or description used to distinguish one copy of the described materials from other copies.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'c', 'Version identification (R) Information such as names, codes, or descriptions used to identify a version that differs in content but is related across time to another version, such as an edition.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'd', 'Presentation format (R) Presentation format in which the recorded materials, regardless of their current medium, were intended to be used, seen, or heard (e.g., a film made for TV or a text intended for oral proclamation).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'e', 'Number of copies (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 563 file: www.loc.gov/marc/bibliographic/concise/bd563.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_563_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_563_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_563_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_563_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', 'a', 'Binding note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 563 file: www.loc.gov/marc/bibliographic/concise/bd563.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_563_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_563_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_563_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_563_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', 'a', 'Binding note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 565 file: www.loc.gov/marc/bibliographic/concise/bd565.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_565_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_1', '#', 'File size', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_1', '0', 'Case file characteristics', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_565_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'a', 'Number of cases/variables (NR) Number of cases or number of variables in a single case within a repetitive case file series.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'b', 'Name of variable (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'c', 'Unit of analysis (R) Subject to which variables in case files or data bases refer; for example, convicts in correctional files, workers in personnel records, or casualities in emergency room intake files.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'd', 'Universe of data (R) Scope of the data collection effort and the specifications of the sample represented in the described materials.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'e', 'Filing scheme or code (R) Information that places the described materials in the context of a scheme of intellectual arrangement.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 565 file: www.loc.gov/marc/bibliographic/concise/bd565.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_565_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_1', '#', 'File size', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_1', '0', 'Case file characteristics', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_565_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'a', 'Number of cases/variables (NR) Number of cases or number of variables in a single case within a repetitive case file series.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'b', 'Name of variable (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'c', 'Unit of analysis (R) Subject to which variables in case files or data bases refer; for example, convicts in correctional files, workers in personnel records, or casualities in emergency room intake files.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'd', 'Universe of data (R) Scope of the data collection effort and the specifications of the sample represented in the described materials.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'e', 'Filing scheme or code (R) Information that places the described materials in the context of a scheme of intellectual arrangement.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 580 file: www.loc.gov/marc/bibliographic/concise/bd580.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_580_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_580_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_580_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_580_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '580', 'a', 'Linking entry complexity note (NR) Catalog entry for the related title and a statement describing the relationship.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '580', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '580', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 580 file: www.loc.gov/marc/bibliographic/concise/bd580.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_580_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_580_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_580_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_580_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '580', 'a', 'Linking entry complexity note (NR) Catalog entry for the related title and a statement describing the relationship.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '580', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '580', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 581 file: www.loc.gov/marc/bibliographic/concise/bd581.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_581_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_581_ind_1', '#', 'Publications', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_581_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_581_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_581_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', 'a', 'Publications about described materials note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', 'z', 'International Standard Book Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 581 file: www.loc.gov/marc/bibliographic/concise/bd581.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_581_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_581_ind_1', '#', 'Publications', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_581_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_581_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_581_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', 'a', 'Publications about described materials note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', 'z', 'International Standard Book Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 584 file: www.loc.gov/marc/bibliographic/concise/bd584.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_584_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_584_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_584_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_584_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', 'a', 'Accumulation (R) Rate at which the described materials are accumulating expressed as a ratio of volume to time period.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', 'b', 'Frequency of use (R) Measure of reference activity, usually expressed as a ratio of number of retrievals to time period, or by general terms such as active or inactive.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 584 file: www.loc.gov/marc/bibliographic/concise/bd584.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_584_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_584_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_584_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_584_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', 'a', 'Accumulation (R) Rate at which the described materials are accumulating expressed as a ratio of volume to time period.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', 'b', 'Frequency of use (R) Measure of reference activity, usually expressed as a ratio of number of retrievals to time period, or by general terms such as active or inactive.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 585 file: www.loc.gov/marc/bibliographic/concise/bd585.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_585_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_585_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_585_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_585_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', 'a', 'Exhibitions note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 585 file: www.loc.gov/marc/bibliographic/concise/bd585.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_585_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_585_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_585_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_585_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', 'a', 'Exhibitions note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 586 file: www.loc.gov/marc/bibliographic/concise/bd586.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_586_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_586_ind_1', '#', 'Awards', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_586_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_586_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_586_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', 'a', 'Awards note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', '8', 'Field link and sequence number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 586 file: www.loc.gov/marc/bibliographic/concise/bd586.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_586_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_586_ind_1', '#', 'Awards', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_586_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_586_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_586_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', 'a', 'Awards note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', '8', 'Field link and sequence number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 59x file: www.loc.gov/marc/bibliographic/concise/bd59x.html --- category: biblio tag: 69x file: www.loc.gov/marc/bibliographic/concise/bd69x.html --- category: biblio tag: 740 file: www.loc.gov/marc/bibliographic/concise/bd740.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_740_ind_1$ident$, - BTRIM($label$First - Nonfiling characters - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_740_ind_2$ident$, - BTRIM($label$Second - Type of added entry - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_2', '2', 'Analytical entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'a', 'Uncontrolled related/analytical title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'h', 'Medium (NR) Media qualifier.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'n', 'Number of part/section of a work (R) Number designation for a part/section of a work used in a title.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'p', 'Name of part/section of a work (R) Name designation of a part/section of work in a title.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 740 file: www.loc.gov/marc/bibliographic/concise/bd740.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_740_ind_1$ident$, - BTRIM($label$First - Nonfiling characters - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_740_ind_2$ident$, - BTRIM($label$Second - Type of added entry - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_2', '2', 'Analytical entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'a', 'Uncontrolled related/analytical title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'h', 'Medium (NR) Media qualifier.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'n', 'Number of part/section of a work (R) Number designation for a part/section of a work used in a title.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'p', 'Name of part/section of a work (R) Name designation of a part/section of work in a title.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 850 file: www.loc.gov/marc/bibliographic/concise/bd850.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_850_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_850_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_850_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_850_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '850', 'a', 'Holding institution (R) MARC code or the name of the institution holding the item. See Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '850', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 850 file: www.loc.gov/marc/bibliographic/concise/bd850.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_850_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_850_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_850_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_850_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '850', 'a', 'Holding institution (R) MARC code or the name of the institution holding the item. See Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '850', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 880 file: www.loc.gov/marc/bibliographic/concise/bd880.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_880_ind_1$ident$, - BTRIM($label$First - Appropriate indicator as available in associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_880_ind_2$ident$, - BTRIM($label$Second - Appropriate indicator as available in associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'a', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'b', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'c', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'd', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'e', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'f', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'g', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'h', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'i', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'j', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'k', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'l', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'm', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'n', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'o', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'p', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'q', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'r', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 's', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 't', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'u', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'v', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'w', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'x', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'y', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'z', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '0', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '1', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '2', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '3', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '4', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '5', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '7', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '8', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '9', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 880 file: www.loc.gov/marc/bibliographic/concise/bd880.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_880_ind_1$ident$, - BTRIM($label$First - Appropriate indicator as available in associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_880_ind_2$ident$, - BTRIM($label$Second - Appropriate indicator as available in associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'a', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'b', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'c', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'd', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'e', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'f', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'g', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'h', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'i', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'j', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'k', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'l', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'm', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'n', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'o', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'p', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'q', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'r', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 's', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 't', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'u', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'v', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'w', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'x', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'y', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'z', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '0', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '1', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '2', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '3', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '4', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '5', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '7', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '8', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '9', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 882 file: www.loc.gov/marc/bibliographic/concise/bd882.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_882_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_882_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_882_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_882_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', 'a', 'Replacement title (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', 'i', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', 'w', 'Replacement bibliographic record control number (R) System control number of the replacement bibliographic record preceded by the MARC code, enclosed in parentheses, for the agency to which the control number applies. See Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 882 file: www.loc.gov/marc/bibliographic/concise/bd882.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_882_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_882_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_882_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_882_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', 'a', 'Replacement title (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', 'i', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', 'w', 'Replacement bibliographic record control number (R) System control number of the replacement bibliographic record preceded by the MARC code, enclosed in parentheses, for the agency to which the control number applies. See Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 886 file: www.loc.gov/marc/bibliographic/concise/bd886.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_886_ind_1$ident$, - BTRIM($label$First - Type of field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_1', '0', 'Leader', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_1', '1', 'Variable control fields (002-009)', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_1', '2', 'Variable data fields (010-999)', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_886_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'a', 'Tag of the foreign MARC field (NR) Not present when the first indicator value is 0 (Leader). When it is present, subfield $a is the second subfield in the field, immediately before subfield $b.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'b', 'Content of the foreign MARC field (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '2', 'Source of data (NR) MARC code for the foreign MARC format from which the record is converted. Must be first subfield in the field. Code from: Format Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'a', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'b', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'c', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'd', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'e', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'f', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'g', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'h', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'i', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'j', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'k', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'l', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'm', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'n', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'o', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'p', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'q', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'r', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 's', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 't', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'u', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'v', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'w', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'x', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'y', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'z', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '0', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '1', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '2', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '3', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '4', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '5', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '6', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '7', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '8', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '9', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 886 file: www.loc.gov/marc/bibliographic/concise/bd886.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_886_ind_1$ident$, - BTRIM($label$First - Type of field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_1', '0', 'Leader', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_1', '1', 'Variable control fields (002-009)', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_1', '2', 'Variable data fields (010-999)', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_886_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'a', 'Tag of the foreign MARC field (NR) Not present when the first indicator value is 0 (Leader). When it is present, subfield $a is the second subfield in the field, immediately before subfield $b.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'b', 'Content of the foreign MARC field (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '2', 'Source of data (NR) MARC code for the foreign MARC format from which the record is converted. Must be first subfield in the field. Code from: Format Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'a', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'b', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'c', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'd', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'e', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'f', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'g', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'h', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'i', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'j', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'k', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'l', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'm', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'n', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'o', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'p', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'q', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'r', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 's', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 't', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'u', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'v', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'w', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'x', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'y', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'z', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '0', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '1', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '2', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '3', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '4', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '5', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '6', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '7', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '8', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '9', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 887 file: www.loc.gov/marc/bibliographic/concise/bd887.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_887_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_887_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_887_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_887_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '887', 'a', 'Content of non-MARC field (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '887', '2', 'Source of data (NR) Source of the data, either a schema or DTD reference. Code from: Format Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 887 file: www.loc.gov/marc/bibliographic/concise/bd887.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_887_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_887_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_887_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_887_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '887', 'a', 'Content of non-MARC field (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '887', '2', 'Source of data (NR) Source of the data, either a schema or DTD reference. Code from: Format Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: int file: www.loc.gov/marc/bibliographic/concise/bdintro.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007v.html --- category: biblio tag: 017 file: www.loc.gov/marc/bibliographic/concise/bd017.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_017_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_017_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_017_ind_2$ident$, - BTRIM($label$Second - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_017_ind_2', '#', 'Copyright or legal deposit number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_017_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'a', 'Copyright or legal deposit number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'b', 'Assigning agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'd', 'Date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'i', 'Display text (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'z', 'Canceled/invalid copyright or legal deposit number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', '2', 'Source (NR) Code from: Copyright and Legal Deposit Number Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 017 file: www.loc.gov/marc/bibliographic/concise/bd017.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_017_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_017_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_017_ind_2$ident$, - BTRIM($label$Second - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_017_ind_2', '#', 'Copyright or legal deposit number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_017_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'a', 'Copyright or legal deposit number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'b', 'Assigning agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'd', 'Date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'i', 'Display text (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'z', 'Canceled/invalid copyright or legal deposit number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', '2', 'Source (NR) Code from: Copyright and Legal Deposit Number Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 363 file: www.loc.gov/marc/bibliographic/concise/bd363.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_363_ind_1$ident$, - BTRIM($label$First - Start/End designator - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_1', '0', 'Starting information', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_1', '1', 'Ending information', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_363_ind_2$ident$, - BTRIM($label$Second - State of issuance - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_2', '#', 'Not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_2', '0', 'Closed - The sequence of the publication has terminated and is no longer being - issued.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_2', '1', 'Open - The sequence of the publication continues to be issued.', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'a', 'First level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'b', 'Second level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'c', 'Third level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'd', 'Fourth level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'e', 'Fifth level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'f', 'Sixth level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'g', 'Alternative numbering scheme, first level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'h', 'Alternative numbering scheme, second level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'i', 'First level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'j', 'Second level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'k', 'Third level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'l', 'Fourth level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'm', 'Alternative numbering scheme, chronology (NR) Highest level of an alternative chronology scheme.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'u', 'First level textual designation (NR) Textual information associated with enumeration and chronology.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'v', 'First level of chronology, issuance (NR) For items that use coverage in subfield $i (First level of chronology) when the issuing date is different.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'x', 'Nonpublic note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', '8', 'Field link and sequence number (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 363 file: www.loc.gov/marc/bibliographic/concise/bd363.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_363_ind_1$ident$, - BTRIM($label$First - Start/End designator - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_1', '0', 'Starting information', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_1', '1', 'Ending information', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_363_ind_2$ident$, - BTRIM($label$Second - State of issuance - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_2', '#', 'Not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_2', '0', 'Closed - The sequence of the publication has terminated and is no longer being - issued.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_2', '1', 'Open - The sequence of the publication continues to be issued.', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'a', 'First level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'b', 'Second level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'c', 'Third level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'd', 'Fourth level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'e', 'Fifth level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'f', 'Sixth level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'g', 'Alternative numbering scheme, first level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'h', 'Alternative numbering scheme, second level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'i', 'First level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'j', 'Second level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'k', 'Third level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'l', 'Fourth level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'm', 'Alternative numbering scheme, chronology (NR) Highest level of an alternative chronology scheme.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'u', 'First level textual designation (NR) Textual information associated with enumeration and chronology.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'v', 'First level of chronology, issuance (NR) For items that use coverage in subfield $i (First level of chronology) when the issuing date is different.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'x', 'Nonpublic note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', '8', 'Field link and sequence number (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 542 file: www.loc.gov/marc/bibliographic/concise/bd542.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_542_ind_1$ident$, - BTRIM($label$First - Privacy - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_542_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'a', 'Personal creator (NR) "Undetermined" may be used if research was done but no personal creator was found.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'b', 'Personal creator death date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'c', 'Corporate creator (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'd', 'Copyright holder (R) "Undetermined" may be used if research was done but no copyright holder was found.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'e', 'Copyright holder contact information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'f', 'Copyright statement (R) Copyright statement as it is presented on the resource.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'g', 'Copyright date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'h', 'Copyright renewal date (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'i', 'Publication date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'j', 'Creation date (NR) Year of creation for an unpublished resource.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'k', 'Publisher (R) "Undetermined" may be used if research was done but no publisher is found.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'l', 'Copyright status (NR) Determined status of the item. This is only recorded if it is known with certainty. "Undetermined" may be used if research was done but no status is found.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'm', 'Publication status (NR) Whether the item is published or unpublished, using the definition of published in copyright law of the jurisdiction, or that expressed in the Berne Convention''s specifications if other definitions are not available. "Undetermined" may be used if research was done but no status is found.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'n', 'Note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'o', 'Research date (NR) Date that the copyright data was determined based on research.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'p', 'Country of publication or creation (R) Country in which the resource was published or, in the case of unpublished materials, the country in which the resource was created.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'q', 'Supplying agency (NR) Code or name of agency supplying the information.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'r', 'Jurisdiction of copyright assessment (NR) Jurisdiction within which the copyright status assessment is being made.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 's', 'Source of information (NR) Source of the copyright information, whether from the piece or from other sources.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'u', 'Uniform Resource Identifier (R) Uniform Resource Identifier (URI), for example a URL or URN, which provides electronic access data in a standard syntax. The data may be a more detailed statement about information relating to copyright status.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 542 file: www.loc.gov/marc/bibliographic/concise/bd542.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_542_ind_1$ident$, - BTRIM($label$First - Privacy - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_542_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'a', 'Personal creator (NR) "Undetermined" may be used if research was done but no personal creator was found.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'b', 'Personal creator death date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'c', 'Corporate creator (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'd', 'Copyright holder (R) "Undetermined" may be used if research was done but no copyright holder was found.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'e', 'Copyright holder contact information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'f', 'Copyright statement (R) Copyright statement as it is presented on the resource.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'g', 'Copyright date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'h', 'Copyright renewal date (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'i', 'Publication date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'j', 'Creation date (NR) Year of creation for an unpublished resource.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'k', 'Publisher (R) "Undetermined" may be used if research was done but no publisher is found.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'l', 'Copyright status (NR) Determined status of the item. This is only recorded if it is known with certainty. "Undetermined" may be used if research was done but no status is found.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'm', 'Publication status (NR) Whether the item is published or unpublished, using the definition of published in copyright law of the jurisdiction, or that expressed in the Berne Convention''s specifications if other definitions are not available. "Undetermined" may be used if research was done but no status is found.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'n', 'Note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'o', 'Research date (NR) Date that the copyright data was determined based on research.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'p', 'Country of publication or creation (R) Country in which the resource was published or, in the case of unpublished materials, the country in which the resource was created.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'q', 'Supplying agency (NR) Code or name of agency supplying the information.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'r', 'Jurisdiction of copyright assessment (NR) Jurisdiction within which the copyright status assessment is being made.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 's', 'Source of information (NR) Source of the copyright information, whether from the piece or from other sources.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'u', 'Uniform Resource Identifier (R) Uniform Resource Identifier (URI), for example a URL or URN, which provides electronic access data in a standard syntax. The data may be a more detailed statement about information relating to copyright status.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007d.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007g.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007h.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007k.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007m.html --- category: biblio tag: 534 file: www.loc.gov/marc/bibliographic/concise/bd534.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_534_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_534_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_534_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_534_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'a', 'Main entry of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'b', 'Edition statement of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'c', 'Publication, distribution, etc. of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'e', 'Physical description, etc. of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'f', 'Series statement of original (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'k', 'Key title of original (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'l', 'Location of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'm', 'Material specific details (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'n', 'Note about original (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'o', 'Other resource identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'p', 'Introductory phrase (NR) Introductory phrase that introduces the citation of the original version.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 't', 'Title statement of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'x', 'International Standard Serial Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'z', 'International Standard Book Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 534 file: www.loc.gov/marc/bibliographic/concise/bd534.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_534_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_534_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_534_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_534_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'a', 'Main entry of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'b', 'Edition statement of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'c', 'Publication, distribution, etc. of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'e', 'Physical description, etc. of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'f', 'Series statement of original (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'k', 'Key title of original (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'l', 'Location of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'm', 'Material specific details (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'n', 'Note about original (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'o', 'Other resource identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'p', 'Introductory phrase (NR) Introductory phrase that introduces the citation of the original version.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 't', 'Title statement of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'x', 'International Standard Serial Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'z', 'International Standard Book Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 040 file: www.loc.gov/marc/authority/concise/ad040.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_040_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_040_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_040_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_040_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'a', 'Original cataloging agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'b', 'Language of cataloging (NR) MARC code for the language of the catalog for which the record is intended. Code from: MARC Code List for Languages.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'c', 'Transcribing agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'd', 'Modifying agency (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'e', 'Description conventions (R) Information specifying the description rules used in formulating the heading and reference structure when field 008/10 (Descriptive cataloging rules) contains code z (Other). Code from: Description Convention Source Codes.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'f', 'Subject heading/thesaurus conventions (NR) MARC code for the subject heading/thesaurus conventions used when field 008/11 (Subject heading system/thesaurus) contains code z (Other). Code from: Subject Heading and Term Source Codes, or from specialized subject term lists indicated in the introduction to Subject Heading and Term Source Codes, such as the Genre/Form Code and Term Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 040 file: www.loc.gov/marc/authority/concise/ad040.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_040_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_040_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_040_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_040_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'a', 'Original cataloging agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'b', 'Language of cataloging (NR) MARC code for the language of the catalog for which the record is intended. Code from: MARC Code List for Languages.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'c', 'Transcribing agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'd', 'Modifying agency (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'e', 'Description conventions (R) Information specifying the description rules used in formulating the heading and reference structure when field 008/10 (Descriptive cataloging rules) contains code z (Other). Code from: Description Convention Source Codes.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'f', 'Subject heading/thesaurus conventions (NR) MARC code for the subject heading/thesaurus conventions used when field 008/11 (Subject heading system/thesaurus) contains code z (Other). Code from: Subject Heading and Term Source Codes, or from specialized subject term lists indicated in the introduction to Subject Heading and Term Source Codes, such as the Genre/Form Code and Term Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 006 file: www.loc.gov/marc/bibliographic/concise/bd006.html --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008x.html --- category: biblio tag: 040 file: www.loc.gov/marc/bibliographic/concise/bd040.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_040_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_040_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_040_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_040_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'a', 'Original cataloging agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'b', 'Language of cataloging (NR) MARC code for the language of cataloging in the record. Code from: MARC Code List for Languages.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'c', 'Transcribing agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'd', 'Modifying agency (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'e', 'Description conventions (R) Code from: Description Convention Source Codes.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 040 file: www.loc.gov/marc/bibliographic/concise/bd040.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_040_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_040_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_040_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_040_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'a', 'Original cataloging agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'b', 'Language of cataloging (NR) MARC code for the language of cataloging in the record. Code from: MARC Code List for Languages.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'c', 'Transcribing agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'd', 'Modifying agency (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'e', 'Description conventions (R) Code from: Description Convention Source Codes.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 588 file: www.loc.gov/marc/bibliographic/concise/bd588.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_588_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_588_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_588_ind_1', '0', 'Source of description', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_588_ind_1', '1', 'Latest issue consulted', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_588_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_588_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '588', 'a', 'Source of description note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 884 file: www.loc.gov/marc/authority/concise/ad884.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_884_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_884_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_884_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_884_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '884', 'a', 'Conversion process (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008b.html - - UPDATE config.record_attr_definition - SET description = 'Illustrations' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Target audience' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 22 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 23 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Nature of contents' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 24 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Government publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 28 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Conference publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 29 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Festschrift' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 30 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Index' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 31 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 32 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Literary form' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 33 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Biography' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 34 AND rec_type IN ('BKS') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 18, '#', 'No illustrations', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'a', 'Illustrations', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'b', 'Maps', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'c', 'Portraits', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'd', 'Charts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'e', 'Plans', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'f', 'Plates', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'g', 'Music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'h', 'Facsimiles', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'i', 'Coats of arms', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'j', 'Genealogical tables', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'k', 'Forms', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'l', 'Samples', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'm', 'Phonodisc, phonowire, etc.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'o', 'Photographs', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'p', 'Illuminations', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '#', 'Unknown or not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'a', 'Preschool', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'b', 'Primary', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'c', 'Pre-adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'd', 'Adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'e', 'Adult', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'f', 'Specialized', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'g', 'General', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'j', 'Juvenile', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '#', 'None of the following', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'a', 'Microfilm', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'b', 'Microfiche', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'c', 'Microopaque', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'd', 'Large print', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'f', 'Braille', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'r', 'Regular print reproduction', 'Eye-readable print, such as a photocopy.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 's', 'Electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '#', 'No specified nature of contents', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'a', 'Abstracts/summaries', 'Abstracts or summaries of other publications. - Not used when a publication includes an - abstract or summary of its own content. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'b', 'Bibliographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'c', 'Catalogs', 'Also includes lists of collectible objects, - such as stamps and coins, or trade catalogs, - etc. For catalogs of books, sound recordings, - or motion pictures, code b (Bibliographies), - code k (Discographies), or code q - (Filmographies), are given with code c. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'd', 'Dictionaries', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'e', 'Encyclopedias', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'f', 'Handbooks', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'g', 'Legal articles', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'i', 'Indexes', 'Index to bibliographical material - other than itself. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'j', 'Patent document', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'k', 'Discographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'l', 'Legislation', 'Full or partial texts of enactments of - legislative bodies, published either in - statute or in code form, or texts of rules and - regulations issued by executive or - administrative agencies. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'm', 'Theses', 'Thesis, dissertation, or work identified as - having been created to satisfy the - requirements for an academic certification or - degree. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'n', 'Surveys of literature in a subject area', 'Composed entirely of authored surveys that - summarize what has been published about a - subject. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'o', 'Reviews', 'Devoted entirely to critical reviews of - published or performed works (e.g., books, - films, sound recordings, theater). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'p', 'Programmed texts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'q', 'Filmographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'r', 'Directories', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 's', 'Statistics', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 't', 'Technical reports', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'u', 'Standards/specifications', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'v', 'Legal cases and case notes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'w', 'Law reports and digests', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'y', 'Yearbooks', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'z', 'Treaties', 'Treaty or accord negotiated between two or - more parties to settle a disagreement, - establish a relationship, grant rights, - etc. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '2', 'Offprints', 'Publication that originally was published as - an article in a monograph or a serial and that - is also issued separately and independently. - Includes preprints and postprints. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '5', 'Calendars', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '6', 'Comics/graphic novels', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '#', 'Not a government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'a', 'Autonomous or semi-autonomous component', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'c', 'Multilocal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'f', 'Federal/national', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'i', 'International intergovernmental', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'l', 'Local', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'm', 'Multistate', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'o', 'Government publication-level undetermined', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 's', 'State, provincial, territorial, dependent, - etc.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'u', 'Unknown if item is government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '0', 'Not a conference publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '1', 'Conference publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, '0', 'Not a festschrift', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, '1', 'Festschrift', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '0', 'No index', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '1', 'Index present', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '0', 'Not fiction (not further specified)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '1', 'Fiction (not further specified)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'd', 'Dramas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'e', 'Essays', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'f', 'Novels', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'h', 'Humor, satires, etc.', 'Humorous work, satire, or of similar literary - form. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'i', 'Letters', 'Single letter or collection of - correspondence. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'j', 'Short stories', 'Short story or collection of short - stories. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'm', 'Mixed forms', 'Represents a variety of literary forms (e.g., - poetry and short stories). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'p', 'Poetry', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 's', 'Speeches', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '#', 'No biographical material', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'a', 'Autobiography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'b', 'Individual biography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'c', 'Collective biography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'd', 'Contains biographical information', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008c.html - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Target audience' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 22 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 23 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 24 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of computer file' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 26 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 27 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Government publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 28 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 29 AND rec_type IN ('COM') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 22, '#', 'Unknown or not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'a', 'Preschool', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'b', 'Primary', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'c', 'Pre-adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'd', 'Adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'e', 'Adult', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'f', 'Specialized', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'g', 'General', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'j', 'Juvenile', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '#', 'Unknown or not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'a', 'Numeric data', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'b', 'Computer program', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'c', 'Representational', 'Pictorial or graphic information that can be manipulated in conjunction with - other types of files to produce graphic patterns that can be used to interpret - and give meaning to the information. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'd', 'Document', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'e', 'Bibliographic data', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'f', 'Font', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'g', 'Game', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'h', 'Sound', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'i', 'Interactive multimedia', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'j', 'Online system or service', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'm', 'Combination', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '#', 'Not a government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'a', 'Autonomous or semi-autonomous component', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'c', 'Multilocal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'f', 'Federal/national', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'i', 'International intergovernmental', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'l', 'Local', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'm', 'Multistate', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'o', 'Government publication-level undetermined', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 's', 'State, provincial, territorial, dependent, etc.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'u', 'Unknown if item is government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008p.html - - UPDATE config.record_attr_definition - SET description = 'Relief' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Projection' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 22 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 24 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of cartographic material' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 25 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 26 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Government publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 28 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 29 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 30 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Index' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 31 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 32 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Special format characteristics' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 33 AND rec_type IN ('MAP') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 18, '#', 'No relief shown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'a', 'Contours', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'b', 'Shading', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'c', 'Gradient and bathymetric tints', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'd', 'Hachures', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'e', 'Bathymetry/soundings', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'f', 'Form lines', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'g', 'Spot heights', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'i', 'Pictorially', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'j', 'Land forms', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'k', 'Bathymetry/isolines', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'm', 'Rock drawings', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '||||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '##', 'Projection not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'aa', 'Aitoff', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ab', 'Gnomic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ac', 'Lambert''s azimuthal equal area', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ad', 'Orthographic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ae', 'Azimuthal equidistant', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'af', 'Stereographic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ag', 'General vertical near-sided', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'am', 'Modified stereographic for Alaska', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'an', 'Chamberlin trimetric', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ap', 'Polar stereographic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'au', 'Azimuthal, specific type unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'az', 'Azimuthal, other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ba', 'Gall', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bb', 'Goode''s homolographic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bc', 'Lambert''s cylindrical equal area', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bd', 'Mercator', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'be', 'Miller', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bf', 'Mollweide', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bg', 'Sinusoidal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bh', 'Transverse Mercator', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bi', 'Gauss-Kruger', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bj', 'Equirectangular', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bk', 'Krovak', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bl', 'Cassini-Soldner', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bo', 'Oblique Mercator', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'br', 'Robinson', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bs', 'Space oblique Mercator', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bu', 'Cylindrical, specific type unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bz', 'Cylindrical, other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ca', 'Albers equal area', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'cb', 'Bonne', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'cc', 'Lambert''s conformal conic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ce', 'Equidistant conic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'cp', 'Polyconic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'cu', 'Conic, specific type unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'cz', 'Conic, other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'da', 'Armadillo', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'db', 'Butterfly', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'dc', 'Eckert', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'dd', 'Goode''s homolosine', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'de', 'Miller''s bipolar oblique conformal conic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'df', 'Van Der Grinten', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'dg', 'Dimaxion', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'dh', 'Cordiform', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'dl', 'Lambert conformal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'zz', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'a', 'Single map', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'b', 'Map series', 'Number of related but physically separate and bibliographically distinct cartographic - units intended by the producer(s) or issuing body(s) to form a single group. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'c', 'Map serial', 'Issued in successive parts bearing numerical or chronological designations and - intended to be continued indefinitely. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'd', 'Globe', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'e', 'Atlas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'f', 'Separate supplement to another work', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'g', 'Bound as part of another work', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '#', 'Not a government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'a', 'Autonomous or semi-autonomous component', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'c', 'Multilocal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'f', 'Federal/national', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'i', 'International intergovernmental', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'l', 'Local', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'm', 'Multistate', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'o', 'Government publication-level undetermined', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 's', 'State, provincial, territorial, dependent, etc.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'u', 'Unknown if item is government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '#', 'None of the following', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'a', 'Microfilm', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'b', 'Microfiche', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'c', 'Microopaque', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'd', 'Large print', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'f', 'Braille', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'r', 'Regular print reproduction', 'Eye-readable print, such as a photocopy.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 's', 'Electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '0', 'No index', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '1', 'Index present', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '#', 'No specified special format characteristics', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'e', 'Manuscript', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'j', 'Picture card, post card', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'k', 'Calendar', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'l', 'Puzzle', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'n', 'Game', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'o', 'Wall map', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'p', 'Playing cards', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'r', 'Loose-leaf', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '||', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008v.html - - UPDATE config.record_attr_definition - SET description = 'Running time for motion pictures and videorecordings' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 21 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Target audience' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 22 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 23 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Government publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 28 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 29 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 30 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of visual material' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 33 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Technique' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 34 AND rec_type IN ('VIS') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 18, '000', 'Running time exceeds three characters', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '001-999', 'Running time', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'nnn', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '---', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '|||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '#', 'Unknown or not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'a', 'Preschool', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'b', 'Primary', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'c', 'Pre-adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'd', 'Adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'e', 'Adult', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'f', 'Specialized', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'g', 'General', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'j', 'Juvenile', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '#', 'Not a government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'a', 'Autonomous or semi-autonomous component', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'c', 'Multilocal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'f', 'Federal/national', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'i', 'International intergovernmental', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'l', 'Local', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'm', 'Multistate', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'o', 'Government publication-level undetermined', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 's', 'State, provincial, territorial, dependent, etc.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'u', 'Unknown if item is government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '#', 'None of the following', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'a', 'Microfilm', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'b', 'Microfiche', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'c', 'Microopaque', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'd', 'Large print', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'f', 'Braille', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'r', 'Regular print reproduction', 'Eye-readable print, such as a photocopy.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 's', 'Electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'a', 'Art original', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'b', 'Kit', 'Mixture of components from two or more categories, that is, sound recording, - maps, filmstrips, etc., no one of which is the predominant constituent of the - item. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'c', 'Art reproduction', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'd', 'Diorama', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'f', 'Filmstrip', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'g', 'Game', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'i', 'Picture', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'k', 'Graphic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'l', 'Technical drawing', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'm', 'Motion picture', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'n', 'Chart', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'o', 'Flash card', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'p', 'Microscope slide', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'q', 'Model', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'r', 'Realia', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 's', 'Slide', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 't', 'Transparency', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'v', 'Videorecording', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'w', 'Toy', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'a', 'Animation', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'c', 'Animation and live action', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'l', 'Live action', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'n', 'Not applicable', 'Item is not a motion picture or a videorecording.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 088 file: www.loc.gov/marc/bibliographic/concise/bd088.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_088_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_088_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_088_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_088_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '088', 'a', 'Report number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 884 file: www.loc.gov/marc/bibliographic/concise/bd884.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_884_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_884_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_884_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_884_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '884', 'a', 'Conversion process (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007c.html - - UPDATE config.record_attr_definition - SET description = 'Category of material' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 0 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Specific material designation' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 1 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 2 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Color' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 3 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Dimensions' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 4 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Sound' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 5 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Image bit depth' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 6 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'File formats' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 9 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Quality assurance target(s)' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 10 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Antecedent/Source' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 11 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Level of compression' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 12 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Reformatting Quality' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 13 AND rec_type NOT IN ('AUT') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('007', 0, 'c', 'Electronic resource', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'a', 'Tape cartridge', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'b', 'Chip cartridge', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'c', 'Computer optical disc cartridge', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'd', 'Computer disc, type unspecified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'e', 'Computer disc cartridge, type unspecified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'f', 'Tape cassette', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'h', 'Tape reel', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'j', 'Magnetic disk', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'k', 'Computer card', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'm', 'Magneto-optical disc', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'o', 'Optical disc', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'r', 'Remote', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 's', 'Standalone device', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'u', 'Unspecified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'a', 'One color', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'b', 'Black-and-white', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'c', 'Multicolored', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'g', 'Gray scale', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'm', 'Mixed', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'a', '3 1/2 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'e', '12 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'g', '4 3/4 in. or 12 cm.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'i', '1 1/8 x 2 3/8 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'j', '3 7/8 x 2 1/2 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'o', '5 1/4 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'v', '8 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, '#', 'No sound (silent)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'a', 'Sound', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, '001-999', 'Exact bit depth', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'mmm', 'Multiple', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'nnn', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, '---', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, '|||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'a', 'One file format', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'm', 'Multiple file formats', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'a', 'Absent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'p', 'Present', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'a', 'File reproduced from original', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'b', 'File reproduced from microform', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'c', 'File reproduced from an electronic resource', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'd', 'File reproduced from an intermediate (not microform)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'm', 'Mixed', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'a', 'Uncompressed', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'b', 'Lossless', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'd', 'Lossy', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'm', 'Mixed', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'a', 'Access', 'Electronic resource is of a quality that will support current, electronic access to - the original item (reference use), but is not sufficient to serve as a preservation - copy. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'p', 'Preservation', 'Electronic resource was created via reformatting to help preserve the original - item. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'r', 'Replacement', 'Electronic resource is of very high quality and, when printed out, viewed on screen - or played via a listening device could serve as a replacement should the original - be - lost, damaged, or destroyed. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007a.html - - UPDATE config.record_attr_definition - SET description = 'Category of material' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 0 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Specific material designation' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 1 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 2 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Color' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 3 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Physical medium' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 4 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of reproduction' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 5 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Production/reproduction details' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 6 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Positive/negative aspect' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 7 AND rec_type NOT IN ('AUT') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('007', 0, 'a', 'Map', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'd', 'Atlas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'g', 'Diagram', 'Map characterized by simplified, or schematic, representation.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'j', 'Map', 'Two-dimensional map.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'k', 'Profile', 'Scale representation of the intersection of a vertical surface (which may or may not - be a plane) with the surface of the ground or with that of a conceptual - three-dimensional model of phenomena having continuous distribution (e.g., - rainfall). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'q', 'Model', 'Three-dimensional representation of a real object.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'r', 'Remote-sensing image', 'Image produced by a recording device that is not in physical or intimate contact with - the object under study. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 's', 'Section', 'Scaled representation of a vertical surface (commonly a plane) displaying both the - the intersection profile or some conceptual model, and the underlying structures, - e.g., geological section. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'u', 'Unspecified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'y', 'View', 'Perspective representation of the landscape shown as if it were projected onto an - oblique plane. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'a', 'One color', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'c', 'Multicolored', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'a', 'Paper', 'Any kind of cellulose-based paper.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'b', 'Wood', 'Material which is based on wood particles or fibers may or may not be considered - wood. Consider particle board wood.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'c', 'Stone', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'd', 'Metal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'e', 'Synthetic', 'Man-made substances other than textiles, plastic, and vinyl.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'f', 'Skin', 'Excludes leather, parchment, and vellum.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'g', 'Textiles', 'Used for all fabrics, whether made from natural or synthetic fibers.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'i', 'Plastic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'j', 'Glass', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'l', 'Vinyl', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'n', 'Vellum', 'Fine-grained unsplit lambskin, kidskin, or calfskin prepared especially for writing - or drawing on. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'p', 'Plaster', 'Includes mixtures of ground solids and plaster.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'q', 'Flexible base photographic, positive', 'Material is a flexible base photographic medium designed to render a positive - image. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'r', 'Flexible base photographic, negative', 'Material is a flexible base photographic medium designed to render a negative - image. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 's', 'Non-flexible base photographic, positive', 'Material is a non-flexible base photographic medium designed to render a positive - image. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 't', 'Non-flexible base photographic, negative', 'Material is a non-flexible base photographic medium designed to render a negative - image. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'v', 'Leather', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'w', 'Parchment', 'Skin of a sheep or goat prepared for writing on.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'x', 'Not applicable', 'Physical medium is not applicable to remote digital - cartographic resources because it pertains to characteristics - specific to physical aspects of carriers. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'y', 'Other photographic medium', 'Photographic medium other than those covered by one of the more specific codes q, - r, - s, and t. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'f', 'Facsimile', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'a', 'Photocopy, blueline print', 'Has a blueline image on a white background and is reproduced by the whiteprint - process. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'b', 'Photocopy', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'c', 'Photographic pre-production', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'd', 'Film', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'a', 'Positive', 'Polarity is positive, i.e., lines and characters are dark on light background.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'b', 'Negative', 'Polarity is negative, i.e., lines and characters are light on dark background.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'm', 'Mixed polarity', 'Mixture of positive and negative images.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, '|', 'No attempt to code', '', 'biblio'); --- category: authority tag: 050 file: www.loc.gov/marc/authority/concise/ad050.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_050_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_050_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_050_ind_2', BTRIM($label$ - -Second - Source of call number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_050_ind_2', '0', 'Assigned by LC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_050_ind_2', '4', 'Assigned by agency other than LC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '050', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 052 file: www.loc.gov/marc/authority/concise/ad052.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_052_ind_1', BTRIM($label$ - -First - Code source - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_052_ind_1', '#', 'Library of Congress Classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_052_ind_1', '1', 'U.S. Dept. of Defense Classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_052_ind_1', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_052_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_052_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '052', 'a', 'Geographic classification area code (NR) -Four- to six-character numeric or alphanumeric code for the main geographic area - associated with the heading. -Code is derived from the LC class G schedule by dropping the letter G.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 053 file: www.loc.gov/marc/authority/concise/ad053.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_053_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_053_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_053_ind_2', BTRIM($label$ - -Second - Source of classification number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_053_ind_2', '0', 'Assigned by LC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_053_ind_2', '4', 'Assigned by agency other than LC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '053', 'a', 'Classification number element-single number or beginning number of span (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 060 file: www.loc.gov/marc/authority/concise/ad060.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_060_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_060_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_060_ind_2', BTRIM($label$ - -Second - Source of call number - - Whether the source of the call number is the National Library of Medicine or - another organization. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_060_ind_2', '0', 'Assigned by NLM', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_060_ind_2', '4', 'Assigned by agency other than NLM', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '060', 'a', 'Classification number (NR) -Source of the classification number is National Library of Medicine - Classification that is maintained by the NLM. NLM also determines which - Library of Congress Classification schedules are used to augment the - NLM scheme.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 070 file: www.loc.gov/marc/authority/concise/ad070.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_070_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_070_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_070_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_070_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '070', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 075 file: www.loc.gov/marc/authority/concise/ad075.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_075_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_075_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_075_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_075_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '075', 'a', 'Type of entity term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 080 file: www.loc.gov/marc/authority/concise/ad080.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_080_ind_1', BTRIM($label$ - -First - Type of edition - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_080_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_080_ind_1', '0', 'Full', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_080_ind_1', '1', 'Abridged', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_080_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_080_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '080', 'a', 'Universal Decimal Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 087 file: www.loc.gov/marc/authority/concise/ad087.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_087_ind_1', BTRIM($label$ - -First - Number source - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_087_ind_1', '#', 'Source specified in subfield $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_087_ind_1', '0', 'Superintendent of Documents Classification System', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_087_ind_1', '1', 'Government of Canada Publications: Outline of Classification', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_087_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_087_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '087', 'a', 'Classification number element-Single number of beginning number of span (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 673 file: www.loc.gov/marc/authority/concise/ad673.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_673_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_673_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '673', 'a', 'Title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 885 file: www.loc.gov/marc/authority/concise/ad885.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_885_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_885_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_885_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_885_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '885', 'a', 'Matching information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 033 file: www.loc.gov/marc/bibliographic/concise/bd033.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_033_ind_1', BTRIM($label$ - -First - Type of date in subfield $a - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_1', '#', 'No date information', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_1', '0', 'Single date', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_1', '1', 'Multiple single dates', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_1', '2', 'Range of dates', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_033_ind_2', BTRIM($label$ - -Second - Type of event - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_2', '0', 'Capture - Pertains to the recording of sound, the filming of visual images, the making or - producing of an item, or other form of creation of an item.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_2', '1', 'Broadcast - Pertains to the broadcasting (i.e., transmission) or re-broadcasting of sound - or visual images.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_2', '2', 'Finding - Pertains to the finding of a naturally occurring object.', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '033', 'a', 'Formatted date/time (R) -Seventeen characters, recorded in the pattern yyyymmddhhmm+-hmm, that - indicate the actual or approximate date (yyyymmdd)/time (hhmm) - of capture, finding, or broadcast and Time Differential Factor (+-hhmm) - information. A hyphen (-) is used for unknown digits in the year/month/day - segment. Within each segment, the data is right justified and any unused position - contains a zero.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 050 file: www.loc.gov/marc/bibliographic/concise/bd050.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_050_ind_1', BTRIM($label$ - -First - Existence in LC collection - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_050_ind_1', '#', 'No information provided - Used for all call numbers assigned by agencies other than the Library of - Congress.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_050_ind_1', '0', 'Item is in LC - Other agencies should use this value when transcribing from LC cataloging copy - on which the call number is neither enclosed within brackets nor preceded by a - Maltese cross.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_050_ind_1', '1', 'Item is not in LC - Used by other agencies when transcribing from LC copy on which the call number - appears in brackets or is preceded by a Maltese cross. Brackets that - customarily surround call numbers for items not in LC are not carried in the - MARC record; they may be generated for display.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_050_ind_2', BTRIM($label$ - -Second - Source of call number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_050_ind_2', '0', 'Assigned by LC - Used when an institution is transcribing from LC cataloging copy.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_050_ind_2', '4', 'Assigned by agency other than LC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '050', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 052 file: www.loc.gov/marc/bibliographic/concise/bd052.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_052_ind_1', BTRIM($label$ - -First - Code source - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_052_ind_1', '#', 'Library of Congress Classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_052_ind_1', '1', 'U.S. Dept. of Defense Classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_052_ind_1', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_052_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_052_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '052', 'a', 'Geographic classification area code (NR) -Numeric or alphanumeric code that represents the main geographic area covered by an - item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 055 file: www.loc.gov/marc/bibliographic/concise/bd055.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_055_ind_1', BTRIM($label$ - -First - Existence in LAC collection - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_1', '#', 'Information not provided - Used in any record input by an institution other than LAC.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_1', '0', 'Work held by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_1', '1', 'Work not held by LAC', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_055_ind_2', BTRIM($label$ - -Second - Type, completeness, source of class/call number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '0', 'LC-based call number assigned by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '1', 'Complete LC class number assigned by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '2', 'Incomplete LC class number assigned by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '3', 'LC-based call number assigned by the contributing library', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '4', 'Complete LC class number assigned by the contributing library', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '5', 'Incomplete LC class number assigned by the contributing library', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '6', 'Other call number assigned by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '7', 'Other class number assigned by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '8', 'Other call number assigned by the contributing library', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '9', 'Other class number assigned by the contributing library', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '055', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 060 file: www.loc.gov/marc/bibliographic/concise/bd060.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_060_ind_1', BTRIM($label$ - -First - Existence in NLM collection - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_060_ind_1', '#', 'No information provided - Used for call numbers assigned by an organization other than NLM.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_060_ind_1', '0', 'Item is in NLM', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_060_ind_1', '1', 'Item is not in NLM', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_060_ind_2', BTRIM($label$ - -Second - Source of call number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_060_ind_2', '0', 'Assigned by NLM', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_060_ind_2', '4', 'Assigned by agency other than NLM', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '060', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 070 file: www.loc.gov/marc/bibliographic/concise/bd070.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_070_ind_1', BTRIM($label$ - -First - Existence in NAL collection - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_070_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_070_ind_1', '0', 'Item is in NAL', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_070_ind_1', '1', 'Item is not in NAL', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_070_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_070_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '070', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 080 file: www.loc.gov/marc/bibliographic/concise/bd080.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_080_ind_1', BTRIM($label$ - -First - Type of edition - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_080_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_080_ind_1', '0', 'Full', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_080_ind_1', '1', 'Abridged', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_080_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_080_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '080', 'a', 'Universal Decimal Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 085 file: www.loc.gov/marc/bibliographic/concise/bd085.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_085_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_085_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_085_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_085_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '085', 'a', 'Number where instructions are found-single - number or beginning number of span (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 086 file: www.loc.gov/marc/bibliographic/concise/bd086.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_086_ind_1', BTRIM($label$ - -First - Number source - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_086_ind_1', '#', 'Source specified in subfield $2 - Classification number other than the U.S. or Canadian scheme.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_086_ind_1', '0', 'Superintendent of Documents Classification System - Assigned by the U.S Government Printing Office. Supt. of Docs. no.: - may be generated for display.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_086_ind_1', '1', 'Government of Canada Publications: Outline of Classification', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_086_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_086_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '086', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 243 file: www.loc.gov/marc/bibliographic/concise/bd243.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_243_ind_1', BTRIM($label$ - -First - Uniform title printed or displayed - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_1', '0', 'Not printed or displayed', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_1', '1', 'Printed or displayed', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_243_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '243', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 257 file: www.loc.gov/marc/bibliographic/concise/bd257.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_257_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_257_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_257_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_257_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '257', 'a', 'Country of producing entity (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 337 file: www.loc.gov/marc/bibliographic/concise/bd337.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_337_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_337_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_337_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_337_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '337', 'a', 'Media type term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 338 file: www.loc.gov/marc/bibliographic/concise/bd338.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_338_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_338_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_338_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_338_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '338', 'a', 'Carrier type term (R) -Term for the category of carrier used to convey the content of the resource.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 346 file: www.loc.gov/marc/bibliographic/concise/bd346.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_346_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_346_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_346_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_346_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '346', 'a', 'Video format (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 347 file: www.loc.gov/marc/bibliographic/concise/bd347.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_347_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_347_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_347_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_347_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '347', 'a', 'File type (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 567 file: www.loc.gov/marc/bibliographic/concise/bd567.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_567_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_567_ind_1', '#', 'Methodology', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_567_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_567_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_567_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '567', 'a', 'Methodology note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 647 file: www.loc.gov/marc/bibliographic/concise/bd647.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_647_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_647_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '647', 'a', 'Named event (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 654 file: www.loc.gov/marc/bibliographic/concise/bd654.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_654_ind_1', BTRIM($label$ - -First - Level of subject - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_654_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_654_ind_1', '0', 'No level specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_654_ind_1', '1', 'Primary', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_654_ind_1', '2', 'Secondary', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_654_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_654_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '654', 'a', 'Focus term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 656 file: www.loc.gov/marc/bibliographic/concise/bd656.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_656_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_656_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_656_ind_2', BTRIM($label$ - -Second - Source of term - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_656_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '656', 'a', 'Occupation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 657 file: www.loc.gov/marc/bibliographic/concise/bd657.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_657_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_657_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_657_ind_2', BTRIM($label$ - -Second - Source of term - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_657_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '657', 'a', 'Function (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 662 file: www.loc.gov/marc/bibliographic/concise/bd662.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_662_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_662_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_662_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_662_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '662', 'a', 'Country or larger entity (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 752 file: www.loc.gov/marc/bibliographic/concise/bd752.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_752_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_752_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_752_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_752_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '752', 'a', 'Country or larger entity (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 753 file: www.loc.gov/marc/bibliographic/concise/bd753.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_753_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_753_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_753_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_753_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '753', 'a', 'Make and model of machine (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 754 file: www.loc.gov/marc/bibliographic/concise/bd754.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_754_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_754_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_754_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_754_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '754', 'a', 'Taxonomic name (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 885 file: www.loc.gov/marc/bibliographic/concise/bd885.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_885_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_885_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_885_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_885_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '885', 'a', 'Matching information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 043 file: www.loc.gov/marc/bibliographic/concise/bd043.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_043_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_043_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_043_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_043_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '043', 'a', 'Geographic area code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 345 file: www.loc.gov/marc/bibliographic/concise/bd345.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_345_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_345_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_345_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_345_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '345', 'a', 'Presentation format (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 881 file: www.loc.gov/marc/bibliographic/concise/bd881.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_881_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_881_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_881_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_881_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '881', 'a', 'Manifestation statement, high-level/general (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 856 file: www.loc.gov/marc/authority/concise/ad856.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_856_ind_1', BTRIM($label$ - -First - Access method - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '0', 'Email', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '1', 'FTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '2', 'Remote login (Telnet)', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '3', 'Dial-up', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '4', 'HTTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '7', 'Method specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_856_ind_2', BTRIM($label$ - -Second - Relationship - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '0', 'Resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '1', 'Version of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '2', 'Related resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '3', 'Component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '4', 'Version of component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '856', 'a', 'Host name (R) -Fully qualified domain (host name) of the electronic location. It contains a - network address which is repeated if there is more than one address for the same - host.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 856 file: www.loc.gov/marc/bibliographic/concise/bd856.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_856_ind_1', BTRIM($label$ - -First - Access method - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '0', 'Email', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '1', 'FTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '2', 'Remote login (Telnet)', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '3', 'Dial-up', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '4', 'HTTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '7', 'Method specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_856_ind_2', BTRIM($label$ - -Second - Relationship - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '0', 'Resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '1', 'Version of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '2', 'Related resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '3', 'Component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '4', 'Version of component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '856', 'a', 'Host name (R) -Fully qualified domain (host name) of the electronic location. It contains a - network address which is repeated if there is more than one address for the same - host.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 022 file: www.loc.gov/marc/authority/concise/ad022.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_022_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_022_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_022_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_022_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '022', 'a', 'International Standard Serial Number (NR) -Valid ISSN for the continuing resource. ISSN may be generated for - display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 023 file: www.loc.gov/marc/authority/concise/ad023.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_023_ind_1', BTRIM($label$ - -First - Type of Cluster ISSN - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_023_ind_1', '0', 'ISSN-L', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_023_ind_1', '1', 'ISSN-H', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_023_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_023_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '023', 'a', 'Cluster ISSN (NR) -As designated by the ISSN International Centre, Cluster ISSNs group together resources - - with specific relationships to each other such as medium versions (ISSN-L), and clusters - - such as earlier and later titles (ISSN-H). The appropriate prefix for the ISSN type - - denoted by the first indicator value may be generated for display, for value 0: ISSN-L; - for value 1: ISSN-H.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 371 file: www.loc.gov/marc/authority/concise/ad371.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_371_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_371_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_371_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_371_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '371', 'a', 'Address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 372 file: www.loc.gov/marc/authority/concise/ad372.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_372_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_372_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_372_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_372_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '372', 'a', 'Field of activity (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 374 file: www.loc.gov/marc/authority/concise/ad374.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_374_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_374_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_374_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_374_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '374', 'a', 'Occupation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 376 file: www.loc.gov/marc/authority/concise/ad376.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_376_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_376_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_376_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_376_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '376', 'a', 'Type of family (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 022 file: www.loc.gov/marc/bibliographic/concise/bd022.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_022_ind_1', BTRIM($label$ - -First - Level of international interest - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_022_ind_1', '#', 'No level specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_022_ind_1', '0', 'Continuing resource of international interest', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_022_ind_1', '1', 'Continuing resource not of international interest', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_022_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_022_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '022', 'a', 'International Standard Serial Number (NR) -Valid ISSN for the continuing resource. ISSN may be generated for - display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 023 file: www.loc.gov/marc/bibliographic/concise/bd023.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_023_ind_1', BTRIM($label$ - -First - Type of Cluster ISSN - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_023_ind_1', '0', 'ISSN-L', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_023_ind_1', '1', 'ISSN-H', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_023_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_023_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '023', 'a', 'Cluster ISSN (NR) -As designated by the ISSN International Centre, Cluster ISSNs group together resources - - with specific relationships to each other such as medium versions (ISSN-L), and clusters - - such as earlier and later titles (ISSN-H). The appropriate prefix for the ISSN type - - denoted by the first indicator value may be generated for display, for value 0: ISSN-L; - for value 1: ISSN-H.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 532 file: www.loc.gov/marc/bibliographic/concise/bd532.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_532_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_532_ind_1', '0', 'Accessibility technical details', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_532_ind_1', '1', 'Accessibility features', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_532_ind_1', '2', 'Accessibility deficiencies', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_532_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_532_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_532_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '532', 'a', 'Summary of accessibility (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 024 file: www.loc.gov/marc/authority/concise/ad024.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_024_ind_1', BTRIM($label$ - -First - Type of standard number or code - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_024_ind_1', '7', 'Source specified in subfield $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_024_ind_1', '8', 'Unspecified type of standard number or code', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_024_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_024_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '024', 'a', 'Standard number or code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 034 file: www.loc.gov/marc/authority/concise/ad034.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_034_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_034_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_034_ind_2', BTRIM($label$ - -Second - Type of ring - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_034_ind_2', '#', 'Not applicable', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_034_ind_2', '0', 'Outer ring', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_034_ind_2', '1', 'Exclusion ring', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '034', 'd', 'Coordinates - westernmost longitude (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 043 file: www.loc.gov/marc/authority/concise/ad043.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_043_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_043_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_043_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_043_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '043', 'a', 'Geographic area code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 065 file: www.loc.gov/marc/authority/concise/ad065.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_065_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_065_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_065_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_065_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '065', 'a', 'Classification number element-single number or beginning of span (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 100 file: www.loc.gov/marc/authority/concise/ad100.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_100_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_100_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_100_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_100_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_100_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_100_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '100', 'a', 'Personal name (NR) -Surname and/or forename; letters, initials, abbreviations, phrases, or numbers - used in place of a name; or a family name.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 110 file: www.loc.gov/marc/authority/concise/ad110.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_110_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_110_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_110_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_110_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_110_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_110_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '110', 'a', 'Corporate name or jurisdiction name as entry element (NR) -Name of a corporate body, or the first entity when subordinate units are present; - a jurisdiction name under which a corporate body, city section, or a title of a - work is entered; or a jurisdictional name that is also an ecclesiastical - entity.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 111 file: www.loc.gov/marc/authority/concise/ad111.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_111_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_111_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_111_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_111_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_111_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_111_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '111', 'a', 'Meeting name or jurisdiction name as entry element (NR) -Name of a meeting or a jurisdiction name under which a meeting name is - entered.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 130 file: www.loc.gov/marc/authority/concise/ad130.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_130_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_130_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '130', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 147 file: www.loc.gov/marc/authority/concise/ad147.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_147_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_147_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_147_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_147_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '147', 'a', 'Named event (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 148 file: www.loc.gov/marc/authority/concise/ad148.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_148_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_148_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_148_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_148_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '148', 'a', 'Chronological term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 150 file: www.loc.gov/marc/authority/concise/ad150.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_150_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_150_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_150_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_150_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '150', 'a', 'Topical term or geographic name entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 151 file: www.loc.gov/marc/authority/concise/ad151.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_151_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_151_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_151_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_151_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '151', 'a', 'Geographic name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 155 file: www.loc.gov/marc/authority/concise/ad155.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_155_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_155_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_155_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_155_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '155', 'a', 'Genre/form term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 162 file: www.loc.gov/marc/authority/concise/ad162.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_162_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_162_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_162_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_162_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '162', 'a', 'Medium of performance term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 180 file: www.loc.gov/marc/authority/concise/ad180.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_180_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_180_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_180_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_180_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '180', 'v', 'Form subdivision (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 181 file: www.loc.gov/marc/authority/concise/ad181.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_181_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_181_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_181_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_181_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '181', 'v', 'Form subdivision (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 182 file: www.loc.gov/marc/authority/concise/ad182.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_182_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_182_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_182_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_182_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '182', 'v', 'Form subdivision (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 185 file: www.loc.gov/marc/authority/concise/ad185.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_185_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_185_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_185_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_185_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '185', 'v', 'Form subdivision (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 260 file: www.loc.gov/marc/authority/concise/ad260.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_260_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_260_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_260_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_260_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '260', 'a', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 335 file: www.loc.gov/marc/authority/concise/ad335.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_335_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_335_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_335_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_335_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '335', 'a', 'Extension plan term (NR) -Extension plan of the work being described.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 336 file: www.loc.gov/marc/authority/concise/ad336.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_336_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_336_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_336_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_336_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '336', 'a', 'Content type term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 348 file: www.loc.gov/marc/authority/concise/ad348.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_348_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_348_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_348_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_348_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '348', 'a', 'Format of notated music term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 360 file: www.loc.gov/marc/authority/concise/ad360.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_360_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_360_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_360_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_360_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '360', 'a', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 370 file: www.loc.gov/marc/authority/concise/ad370.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_370_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_370_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_370_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_370_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '370', 'a', 'Place of birth (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 373 file: www.loc.gov/marc/authority/concise/ad373.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_373_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_373_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_373_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_373_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '373', 'a', 'Associated group (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 375 file: www.loc.gov/marc/authority/concise/ad375.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_375_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_375_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_375_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_375_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '375', 'a', 'Gender (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 377 file: www.loc.gov/marc/authority/concise/ad377.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_377_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_377_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_377_ind_2', BTRIM($label$ - -Second - Source of code - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_377_ind_2', '#', 'MARC language code - Code from: MARC Code List - for Languages.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_377_ind_2', '7', 'Source specified in $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '377', 'a', 'Language code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 378 file: www.loc.gov/marc/authority/concise/ad378.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_378_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_378_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_378_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_378_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '378', 'q', 'Fuller form of personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 380 file: www.loc.gov/marc/authority/concise/ad380.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_380_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_380_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_380_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_380_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '380', 'a', 'Form of work (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 381 file: www.loc.gov/marc/authority/concise/ad381.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_381_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_381_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_381_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_381_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '381', 'a', 'Other distinguishing characteristic (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 382 file: www.loc.gov/marc/authority/concise/ad382.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_382_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_382_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_382_ind_1', '0', 'Medium of performance', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_382_ind_1', '1', 'Partial medium of performance', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_382_ind_1', '2', 'Medium of performance of musical content of representative expression', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_382_ind_1', '3', 'Partial medium of performance of musical content of representative expression', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_382_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_382_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '382', 'a', 'Medium of performance (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 383 file: www.loc.gov/marc/authority/concise/ad383.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_383_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_383_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_383_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_383_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '383', 'a', 'Serial number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 384 file: www.loc.gov/marc/authority/concise/ad384.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_384_ind_1', BTRIM($label$ - -First - Key type - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_384_ind_1', '#', 'Relationship to original unknown', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_384_ind_1', '0', 'Original key', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_384_ind_1', '1', 'Transposed key', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_384_ind_1', '2', 'Key of representative expression', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_384_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_384_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '384', 'a', 'Key (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 385 file: www.loc.gov/marc/authority/concise/ad385.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_385_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_385_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_385_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_385_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '385', 'a', 'Audience term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 386 file: www.loc.gov/marc/authority/concise/ad386.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_386_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_386_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_386_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_386_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '386', 'a', 'Creator/contributor term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 387 file: www.loc.gov/marc/authority/concise/ad387.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_387_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_387_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_387_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_387_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '387', 'a', 'Aspect ratio of representative expression (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 388 file: www.loc.gov/marc/authority/concise/ad388.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_388_ind_1', BTRIM($label$ - -First - Type of time period - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_388_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_388_ind_1', '1', 'Creation of work', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_388_ind_1', '2', 'Creation of aggregate work', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_388_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_388_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '388', 'a', 'Time period of creation term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 400 file: www.loc.gov/marc/authority/concise/ad400.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_400_ind_1', BTRIM($label$ - -First - Type of personal name element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_400_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_400_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_400_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_400_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_400_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '400', 'a', 'Personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 410 file: www.loc.gov/marc/authority/concise/ad410.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_410_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_410_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_410_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_410_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_410_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_410_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '410', 'a', 'Corporate name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 411 file: www.loc.gov/marc/authority/concise/ad411.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_411_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_411_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_411_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_411_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_411_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_411_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '411', 'a', 'Meeting name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 430 file: www.loc.gov/marc/authority/concise/ad430.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_430_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_430_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '430', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 447 file: www.loc.gov/marc/authority/concise/ad447.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_447_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_447_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_447_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_447_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '447', 'a', 'Named event (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 448 file: www.loc.gov/marc/authority/concise/ad448.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_448_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_448_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_448_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_448_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '448', 'a', 'Chronological term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 450 file: www.loc.gov/marc/authority/concise/ad450.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_450_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_450_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_450_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_450_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '450', 'a', 'Topical term or geographic name entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 451 file: www.loc.gov/marc/authority/concise/ad451.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_451_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_451_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_451_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_451_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '451', 'a', 'Geographic name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 455 file: www.loc.gov/marc/authority/concise/ad455.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_455_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_455_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_455_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_455_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '455', 'a', 'Genre/form term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 462 file: www.loc.gov/marc/authority/concise/ad462.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_462_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_462_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_462_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_462_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '462', 'a', 'Medium of performance term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 480 file: www.loc.gov/marc/authority/concise/ad480.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_480_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_480_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_480_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_480_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '480', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 481 file: www.loc.gov/marc/authority/concise/ad481.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_481_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_481_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_481_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_481_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '481', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 482 file: www.loc.gov/marc/authority/concise/ad482.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_482_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_482_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_482_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_482_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '482', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 485 file: www.loc.gov/marc/authority/concise/ad485.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_485_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_485_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_485_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_485_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '485', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 500 file: www.loc.gov/marc/authority/concise/ad500.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_500_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_500_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_500_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_500_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_500_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_500_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '500', 'a', 'Personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 510 file: www.loc.gov/marc/authority/concise/ad510.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_510_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_510_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_510_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_510_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_510_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_510_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '510', 'a', 'Corporate name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 511 file: www.loc.gov/marc/authority/concise/ad511.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_511_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_511_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_511_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_511_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_511_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_511_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '511', 'a', 'Meeting name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 530 file: www.loc.gov/marc/authority/concise/ad530.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_530_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_530_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '530', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 547 file: www.loc.gov/marc/authority/concise/ad547.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_547_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_547_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_547_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_547_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '547', 'a', 'Named event (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 548 file: www.loc.gov/marc/authority/concise/ad548.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_548_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_548_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_548_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_548_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '548', 'a', 'Chronological term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 550 file: www.loc.gov/marc/authority/concise/ad550.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_550_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_550_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_550_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_550_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '550', 'a', 'Topical term or geographic name entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 551 file: www.loc.gov/marc/authority/concise/ad551.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_551_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_551_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_551_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_551_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '551', 'a', 'Geographic name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 555 file: www.loc.gov/marc/authority/concise/ad555.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_555_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_555_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_555_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_555_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '555', 'a', 'Genre/form term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 562 file: www.loc.gov/marc/authority/concise/ad562.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_562_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_562_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_562_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_562_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '562', 'a', 'Medium of performance term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 580 file: www.loc.gov/marc/authority/concise/ad580.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_580_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_580_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_580_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_580_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '580', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 581 file: www.loc.gov/marc/authority/concise/ad581.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_581_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_581_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_581_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_581_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '581', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 582 file: www.loc.gov/marc/authority/concise/ad582.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_582_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_582_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_582_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_582_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '582', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 585 file: www.loc.gov/marc/authority/concise/ad585.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_585_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_585_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_585_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_585_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '585', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 670 file: www.loc.gov/marc/authority/concise/ad670.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_670_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_670_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_670_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_670_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '670', 'a', 'Source citation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 672 file: www.loc.gov/marc/authority/concise/ad672.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_672_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_672_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '672', 'a', 'Title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 675 file: www.loc.gov/marc/authority/concise/ad675.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_675_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_675_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_675_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_675_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '675', 'a', 'Source citation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 677 file: www.loc.gov/marc/authority/concise/ad677.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_677_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_677_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_677_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_677_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '677', 'a', 'Definition (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 678 file: www.loc.gov/marc/authority/concise/ad678.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_678_ind_1', BTRIM($label$ - -First - Type of data - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_678_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_678_ind_1', '0', 'Biographical sketch', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_678_ind_1', '1', 'Administrative history', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_678_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_678_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '678', 'a', 'Biographical or historical data (R) -Brief statement providing biographical information about an individual or family. - It may - also contain historical and administrative information relating to an - organization.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 680 file: www.loc.gov/marc/authority/concise/ad680.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_680_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_680_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_680_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_680_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '680', 'a', 'Heading or subdivision term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 700 file: www.loc.gov/marc/authority/concise/ad700.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_700_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_700_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '0', ' - Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '2', ' - Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '5', ' - Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '6', ' - Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '700', 'a', 'Personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 710 file: www.loc.gov/marc/authority/concise/ad710.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_710_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_710_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '0', ' - Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '2', ' - Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '5', ' - Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '6', ' - Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '710', 'a', 'Corporate name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 711 file: www.loc.gov/marc/authority/concise/ad711.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_711_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_711_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '0', ' - Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '2', ' - Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '5', ' - Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '6', ' - Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '711', 'a', 'Meeting name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 730 file: www.loc.gov/marc/authority/concise/ad730.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_730_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_730_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '0', ' - Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '2', ' - Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '5', ' - Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '6', ' - Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '730', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 747 file: www.loc.gov/marc/authority/concise/ad747.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_747_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_747_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '747', 'a', 'Named event (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 748 file: www.loc.gov/marc/authority/concise/ad748.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_748_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_748_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '748', 'a', 'Chronological term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 750 file: www.loc.gov/marc/authority/concise/ad750.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_750_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_750_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '750', 'a', 'Topical term or geographic name entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 751 file: www.loc.gov/marc/authority/concise/ad751.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_751_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_751_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '751', 'a', 'Geographic name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 755 file: www.loc.gov/marc/authority/concise/ad755.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_755_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_755_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '755', 'a', 'Genre/form term as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 762 file: www.loc.gov/marc/authority/concise/ad762.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_762_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_762_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '762', 'a', 'Medium of performance term as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 780 file: www.loc.gov/marc/authority/concise/ad780.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_780_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_780_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '780', 'i', 'Relationship information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 781 file: www.loc.gov/marc/authority/concise/ad781.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_781_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_781_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '781', 'i', 'Relationship information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 782 file: www.loc.gov/marc/authority/concise/ad782.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_782_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_782_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '782', 'i', 'Relationship information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 785 file: www.loc.gov/marc/authority/concise/ad785.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_785_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_785_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '785', 'i', 'Relationship information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 788 file: www.loc.gov/marc/authority/concise/ad788.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_788_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_788_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '788', 'a', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 082 file: www.loc.gov/marc/bibliographic/concise/bd082.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_082_ind_1', BTRIM($label$ - -First - Type of edition - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_082_ind_1', '0', 'Full edition', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_082_ind_1', '1', 'Abridged edition', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_082_ind_1', '7', 'Other edition specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_082_ind_2', BTRIM($label$ - -Second - Source of classification number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_082_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_082_ind_2', '0', 'Assigned by LC - May be used by organizations transcribing - from LC copy.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_082_ind_2', '4', 'Assigned by agency other than LC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '082', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 083 file: www.loc.gov/marc/bibliographic/concise/bd083.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_083_ind_1', BTRIM($label$ - -First - Type of edition - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_083_ind_1', '0', 'Full edition', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_083_ind_1', '1', 'Abridged edition', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_083_ind_1', '7', 'Other edition specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_083_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_083_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '083', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 084 file: www.loc.gov/marc/bibliographic/concise/bd084.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_084_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_084_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_084_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_084_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '084', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 100 file: www.loc.gov/marc/bibliographic/concise/bd100.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_100_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_100_ind_1', '0', 'Forename - Forename or a name consisting of words, initials, letters, etc., that are - formatted in direct order.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_100_ind_1', '1', 'Surname - Single or multiple surname formatted in inverted order or a single name without - forenames that is known to be a surname.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_100_ind_1', '3', 'Family name - Name represents a family, clan, dynasty, house, or other such group and may be - formatted in direct or inverted order.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_100_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_100_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '100', 'a', 'Personal name (NR) -Surname and/or forename; letters, initials, abbreviations, phrases, or numbers - used in place of a name; or a family name.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 110 file: www.loc.gov/marc/bibliographic/concise/bd110.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_110_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_110_ind_1', '0', 'Inverted name - Corporate name begins with a personal name in inverted order.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_110_ind_1', '1', 'Jurisdiction name - Name of a jurisdiction that is also an ecclesiastical entity or is a - jurisdiction name under which a corporate name or a title of a work is - entered.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_110_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_110_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_110_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '110', 'a', 'Corporate name or jurisdiction name as entry element (NR) -Name of a corporate body or the first entity when subordinate units are present; a - jurisdiction name under which a corporate body, city section, or a title of a work - is entered; or a jurisdiction name that is also an ecclesiastical entity.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 111 file: www.loc.gov/marc/bibliographic/concise/bd111.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_111_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_111_ind_1', '0', 'Inverted name - Meeting name begins with a personal name in inverted order.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_111_ind_1', '1', 'Jurisdiction name - Jurisdiction name under which a meeting name is entered.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_111_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_111_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_111_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '111', 'a', 'Meeting name or jurisdiction name as entry element (NR) -Name of a meeting, or the first entity when subordinate units are present; or a - jurisdiction name under which a meeting name is entered.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 130 file: www.loc.gov/marc/bibliographic/concise/bd130.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_130_ind_1', BTRIM($label$ - -First - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_130_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '130', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 210 file: www.loc.gov/marc/bibliographic/concise/bd210.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_210_ind_1', BTRIM($label$ - -First - Title added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_210_ind_1', '0', 'No added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_210_ind_1', '1', 'Added entry', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_210_ind_2', BTRIM($label$ - -Second - Type - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_210_ind_2', '#', 'Abbreviated key title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_210_ind_2', '0', 'Other abbreviated title', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '210', 'a', 'Abbreviated title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 240 file: www.loc.gov/marc/bibliographic/concise/bd240.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_240_ind_1', BTRIM($label$ - -First - Uniform title printed or displayed - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_1', '0', 'Not printed or displayed', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_1', '1', 'Printed or displayed', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_240_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '240', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 245 file: www.loc.gov/marc/bibliographic/concise/bd245.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_245_ind_1', BTRIM($label$ - -First - Title added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_1', '0', 'No added entry - No title added entry is made, either because no title added entry is desired or - because the title added entry is not traced the same as the title in field - 245.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_1', '1', 'Added entry - Desired title added entry is the same as the title in field 245.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_245_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '245', 'a', 'Title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 246 file: www.loc.gov/marc/bibliographic/concise/bd246.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_246_ind_1', BTRIM($label$ - -First - Note/added entry controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_1', '0', 'Note, no added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_1', '1', 'Note, added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_1', '2', 'No note, no added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_1', '3', 'No note, added entry', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_246_ind_2', BTRIM($label$ - -Second - Type of title - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '#', 'No type specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '0', 'Portion of title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '1', 'Parallel title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '2', 'Distinctive title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '3', 'Other title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '4', 'Cover title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '5', 'Added title page title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '6', 'Caption title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '7', 'Running title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '8', 'Spine title', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '246', 'a', 'Title proper/short title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 247 file: www.loc.gov/marc/bibliographic/concise/bd247.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_247_ind_1', BTRIM($label$ - -First - Title added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_247_ind_1', '0', 'No added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_247_ind_1', '1', 'Added entry', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_247_ind_2', BTRIM($label$ - -Second - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_247_ind_2', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_247_ind_2', '1', 'Do not display note', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '247', 'a', 'Title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 250 file: www.loc.gov/marc/bibliographic/concise/bd250.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_250_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_250_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_250_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_250_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '250', 'a', 'Edition statement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 255 file: www.loc.gov/marc/bibliographic/concise/bd255.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_255_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_255_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_255_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_255_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '255', 'a', 'Statement of scale (NR) -Entire scale statement including any equivalency statements, vertical scales or - vertical exaggeration statements for relief models and other three-dimensional - items.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 256 file: www.loc.gov/marc/bibliographic/concise/bd256.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_256_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_256_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_256_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_256_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '256', 'a', 'Computer file characteristics (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 264 file: www.loc.gov/marc/bibliographic/concise/bd264.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_264_ind_1', BTRIM($label$ - -First - Sequence of statements - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_1', '#', 'Not applicable/No information provided/Earliest', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_1', '2', 'Intervening', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_1', '3', 'Current/Latest', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_264_ind_2', BTRIM($label$ - -Second - Function of entity - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_2', '0', 'Production', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_2', '1', 'Publication', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_2', '2', 'Distribution', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_2', '3', 'Manufacture', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_2', '4', 'Copyright notice date', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '264', 'a', 'Place of production, publication, distribution, manufacture (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 300 file: www.loc.gov/marc/bibliographic/concise/bd300.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_300_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_300_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_300_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_300_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '300', 'a', 'Extent (R) -Number of physical pages, volumes, cassettes, total playing time, etc., of each - type of unit.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 335 file: www.loc.gov/marc/bibliographic/concise/bd335.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_335_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_335_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_335_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_335_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '335', 'a', 'Extension plan term (NR) -Extension plan of the work being described.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 336 file: www.loc.gov/marc/bibliographic/concise/bd336.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_336_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_336_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_336_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_336_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '336', 'a', 'Content type term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 340 file: www.loc.gov/marc/bibliographic/concise/bd340.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_340_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_340_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_340_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_340_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '340', 'a', 'Material base and configuration (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 348 file: www.loc.gov/marc/bibliographic/concise/bd348.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_348_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_348_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_348_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_348_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '348', 'a', 'Format of notated music term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 370 file: www.loc.gov/marc/bibliographic/concise/bd370.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_370_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_370_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_370_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_370_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '370', 'c', 'Associated country (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 377 file: www.loc.gov/marc/bibliographic/concise/bd377.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_377_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_377_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_377_ind_2', BTRIM($label$ - -Second - Source of code - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_377_ind_2', '#', 'MARC language code - Code from: MARC Code List - for Languages.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_377_ind_2', '7', 'Source specified in $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '377', 'a', 'Language code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 380 file: www.loc.gov/marc/bibliographic/concise/bd380.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_380_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_380_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_380_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_380_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '380', 'a', 'Form of work (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 381 file: www.loc.gov/marc/bibliographic/concise/bd381.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_381_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_381_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_381_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_381_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '381', 'a', 'Other distinguishing characteristic (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 382 file: www.loc.gov/marc/bibliographic/concise/bd382.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_382_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_1', '0', 'Medium of performance', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_1', '1', 'Partial medium of performance', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_1', '2', 'Medium of performance of musical content of representative expression', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_1', '3', 'Partial medium of performance of musical content of representative expression', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_382_ind_2', BTRIM($label$ - -Second - Access control - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_2', '0', 'Not intended for access', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_2', '1', 'Intended for access', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '382', 'a', 'Medium of performance (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 383 file: www.loc.gov/marc/bibliographic/concise/bd383.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_383_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_383_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_383_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_383_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '383', 'a', 'Serial number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 384 file: www.loc.gov/marc/bibliographic/concise/bd384.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_384_ind_1', BTRIM($label$ - -First - Key type - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_384_ind_1', '#', 'Relationship to original unknown', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_384_ind_1', '0', 'Original key', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_384_ind_1', '1', 'Transposed key', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_384_ind_1', '2', 'Key of representative expression', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_384_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_384_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '384', 'a', 'Key (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 385 file: www.loc.gov/marc/bibliographic/concise/bd385.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_385_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_385_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_385_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_385_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '385', 'a', 'Audience term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 386 file: www.loc.gov/marc/bibliographic/concise/bd386.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_386_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_386_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_386_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_386_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '386', 'a', 'Creator/contributor term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 387 file: www.loc.gov/marc/bibliographic/concise/bd387.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_387_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_387_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_387_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_387_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '387', 'a', 'Aspect ratio of representative expression (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 388 file: www.loc.gov/marc/bibliographic/concise/bd388.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_388_ind_1', BTRIM($label$ - -First - Type of time period - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_388_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_388_ind_1', '1', 'Creation of work', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_388_ind_1', '2', 'Creation of aggregate work', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_388_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_388_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '388', 'a', 'Time period of creation term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 490 file: www.loc.gov/marc/bibliographic/concise/bd490.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_490_ind_1', BTRIM($label$ - -First - Series tracing policy - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_490_ind_1', '0', 'Series not traced', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_490_ind_1', '1', 'Series traced', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_490_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_490_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '490', 'a', 'Series statement (R) -Series title that may also contain a statement - of responsibility or other title information.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 500 file: www.loc.gov/marc/bibliographic/concise/bd500.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_500_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_500_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_500_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_500_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '500', 'a', 'General note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 501 file: www.loc.gov/marc/bibliographic/concise/bd501.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_501_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_501_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_501_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_501_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '501', 'a', 'With note (NR) -Entire text of the note, including the introductory phrase (e.g., With:, - On reel with:, Issued with, etc.).','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 502 file: www.loc.gov/marc/bibliographic/concise/bd502.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_502_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_502_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_502_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_502_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '502', 'a', 'Dissertation note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 505 file: www.loc.gov/marc/bibliographic/concise/bd505.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_505_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_505_ind_1', '0', 'Contents', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_505_ind_1', '1', 'Incomplete contents', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_505_ind_1', '2', 'Partial contents', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_505_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_505_ind_2', BTRIM($label$ - -Second - Level of content designation - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_505_ind_2', '#', 'Basic', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_505_ind_2', '0', 'Enhanced', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '505', 'a', 'Formatted contents note (NR) -Format of the note is determined by the relevant cataloging rules.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 507 file: www.loc.gov/marc/bibliographic/concise/bd507.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_507_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_507_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_507_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_507_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '507', 'a', 'Representative fraction of scale note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 508 file: www.loc.gov/marc/bibliographic/concise/bd508.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_508_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_508_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_508_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_508_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '508', 'a', 'Creation/production credits note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 510 file: www.loc.gov/marc/bibliographic/concise/bd510.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_510_ind_1', BTRIM($label$ - -First - Coverage/location in source - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_510_ind_1', '0', 'Coverage unknown', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_510_ind_1', '1', 'Coverage complete', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_510_ind_1', '2', 'Coverage is selective', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_510_ind_1', '3', 'Location in source not given', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_510_ind_1', '4', 'Location in source given', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_510_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_510_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '510', 'a', 'Name of source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 515 file: www.loc.gov/marc/bibliographic/concise/bd515.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_515_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_515_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_515_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_515_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '515', 'a', 'Numbering peculiarities note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 518 file: www.loc.gov/marc/bibliographic/concise/bd518.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_518_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_518_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_518_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_518_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '518', 'a', 'Date/time and place of an event note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 520 file: www.loc.gov/marc/bibliographic/concise/bd520.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_520_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '#', 'Summary', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '0', 'Subject', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '1', 'Review', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '2', 'Scope and content', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '3', 'Abstract', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '4', 'Content advice', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_520_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '520', 'a', 'Summary, etc. (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 533 file: www.loc.gov/marc/bibliographic/concise/bd533.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_533_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_533_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_533_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_533_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '533', 'a', 'Type of reproduction (NR) -Introductory phrase that identifies the type of reproduction being described.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 546 file: www.loc.gov/marc/bibliographic/concise/bd546.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_546_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_546_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_546_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_546_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '546', 'a', 'Language note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 550 file: www.loc.gov/marc/bibliographic/concise/bd550.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_550_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_550_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_550_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_550_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '550', 'a', 'Issuing body note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 555 file: www.loc.gov/marc/bibliographic/concise/bd555.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_555_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_555_ind_1', '#', 'Indexes - Used to generate the display constant Indexes:.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_555_ind_1', '0', 'Finding aids - Used to generate the display constant Finding aids:.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_555_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_555_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_555_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '555', 'a', 'Cumulative index/finding aids note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 583 file: www.loc.gov/marc/bibliographic/concise/bd583.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_583_ind_1', BTRIM($label$ - -First - Privacy - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_583_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_583_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_583_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_583_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_583_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '583', 'a', 'Action (NR) -Standardized terminology descriptive of the action.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 600 file: www.loc.gov/marc/bibliographic/concise/bd600.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_600_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_600_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '600', 'a', 'Personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 610 file: www.loc.gov/marc/bibliographic/concise/bd610.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_610_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_610_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '610', 'a', 'Corporate name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 611 file: www.loc.gov/marc/bibliographic/concise/bd611.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_611_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_611_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '611', 'a', 'Meeting name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 630 file: www.loc.gov/marc/bibliographic/concise/bd630.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_630_ind_1', BTRIM($label$ - -First - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_630_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '630', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 648 file: www.loc.gov/marc/bibliographic/concise/bd648.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_648_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_648_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '648', 'a', 'Chronological term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 650 file: www.loc.gov/marc/bibliographic/concise/bd650.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_650_ind_1', BTRIM($label$ - -First - Level of subject - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_1', '0', 'No level specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_1', '1', 'Primary', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_1', '2', 'Secondary', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_650_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '650', 'a', 'Topical term or geographic name entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 651 file: www.loc.gov/marc/bibliographic/concise/bd651.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_651_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_651_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '651', 'a', 'Geographic name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 655 file: www.loc.gov/marc/bibliographic/concise/bd655.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_655_ind_1', BTRIM($label$ - -First - Type of heading - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_1', '#', 'Basic', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_1', '0', 'Faceted', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_655_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '655', 'a', 'Genre/form data or focus term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 700 file: www.loc.gov/marc/bibliographic/concise/bd700.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_700_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_700_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_700_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_700_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_700_ind_2', BTRIM($label$ - -Second - Type of added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_700_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_700_ind_2', '2', 'Analytical entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '700', 'a', 'Personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 710 file: www.loc.gov/marc/bibliographic/concise/bd710.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_710_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_710_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_710_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_710_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_710_ind_2', BTRIM($label$ - -Second - Type of added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_710_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_710_ind_2', '2', 'Analytical entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '710', 'a', 'Corporate name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 711 file: www.loc.gov/marc/bibliographic/concise/bd711.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_711_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_711_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_711_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_711_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_711_ind_2', BTRIM($label$ - -Second - Type of added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_711_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_711_ind_2', '2', 'Analytical entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '711', 'a', 'Meeting name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 751 file: www.loc.gov/marc/bibliographic/concise/bd751.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_751_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_751_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_751_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_751_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '751', 'a', 'Geographic name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 760 file: www.loc.gov/marc/bibliographic/concise/bd760.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_760_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_760_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_760_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_760_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_760_ind_2', '#', 'Main series', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_760_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '760', 'a', 'Main entry heading (NR) -Main entry heading from the 100 (Main Entry Personal Name), 110 (Main Entry Corporate - Name) or 111 (Main Entry Meeting Name) field of the related record.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 762 file: www.loc.gov/marc/bibliographic/concise/bd762.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_762_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_762_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_762_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_762_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_762_ind_2', '#', 'Has subseries', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_762_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '762', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 765 file: www.loc.gov/marc/bibliographic/concise/bd765.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_765_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_765_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_765_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_765_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_765_ind_2', '#', 'Translation of', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_765_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '765', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 767 file: www.loc.gov/marc/bibliographic/concise/bd767.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_767_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_767_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_767_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_767_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_767_ind_2', '#', 'Translated as', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_767_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '767', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 770 file: www.loc.gov/marc/bibliographic/concise/bd770.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_770_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_770_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_770_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_770_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_770_ind_2', '#', 'Has supplement', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_770_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '770', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 772 file: www.loc.gov/marc/bibliographic/concise/bd772.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_772_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_772_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_772_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_772_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_772_ind_2', '#', 'Supplement to', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_772_ind_2', '0', 'Parent', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_772_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '772', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 773 file: www.loc.gov/marc/bibliographic/concise/bd773.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_773_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_773_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_773_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_773_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_773_ind_2', '#', 'In', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_773_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '773', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 774 file: www.loc.gov/marc/bibliographic/concise/bd774.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_774_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_774_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_774_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_774_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_774_ind_2', '#', 'Constituent unit', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_774_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '774', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 775 file: www.loc.gov/marc/bibliographic/concise/bd775.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_775_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_775_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_775_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_775_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_775_ind_2', '#', 'Other edition available', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_775_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '775', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 776 file: www.loc.gov/marc/bibliographic/concise/bd776.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_776_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_776_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_776_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_776_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_776_ind_2', '#', 'Available in another form', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_776_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '776', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 777 file: www.loc.gov/marc/bibliographic/concise/bd777.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_777_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_777_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_777_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_777_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_777_ind_2', '#', 'Issued with', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_777_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '777', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 780 file: www.loc.gov/marc/bibliographic/concise/bd780.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_780_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_780_ind_2', BTRIM($label$ - -Second - Type of relationship - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '0', 'Continues', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '1', 'Continues in part', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '2', 'Supersedes', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '3', 'Supersedes in part', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '4', 'Formed by the union of ... and ...', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '5', 'Absorbed', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '6', 'Absorbed in part', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '7', 'Separated from', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '780', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 785 file: www.loc.gov/marc/bibliographic/concise/bd785.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_785_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_785_ind_2', BTRIM($label$ - -Second - Type of relationship - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '0', 'Continued by', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '1', 'Continued in part by', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '2', 'Superseded by', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '3', 'Superseded in part by', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '4', 'Absorbed by', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '5', 'Absorbed in part by', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '6', 'Split into ... and ...', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '7', 'Merged with ... to form ...', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '8', 'Changed back to', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '785', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 786 file: www.loc.gov/marc/bibliographic/concise/bd786.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_786_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_786_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_786_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_786_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_786_ind_2', '#', 'Data source', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_786_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '786', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 787 file: www.loc.gov/marc/bibliographic/concise/bd787.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_787_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_787_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_787_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_787_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_787_ind_2', '#', 'Related item', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_787_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '787', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 788 file: www.loc.gov/marc/bibliographic/concise/bd788.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_788_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_788_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_788_ind_1', '1', 'Do not display note', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_788_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_788_ind_2', '#', 'Parallel description in another language of cataloging', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_788_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '788', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 800 file: www.loc.gov/marc/bibliographic/concise/bd800.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_800_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_800_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_800_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_800_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_800_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_800_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '800', 'a', 'Personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 810 file: www.loc.gov/marc/bibliographic/concise/bd810.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_810_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_810_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_810_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_810_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_810_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_810_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '810', 'a', 'Corporate name or jurisdiction name as entry - element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 811 file: www.loc.gov/marc/bibliographic/concise/bd811.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_811_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - - See the description of the first indicator - under field - 111. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_811_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_811_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_811_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_811_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_811_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '811', 'a', 'Meeting name or jurisdiction name as entry - element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 830 file: www.loc.gov/marc/bibliographic/concise/bd830.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_830_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_830_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '830', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 046 file: www.loc.gov/marc/authority/concise/ad046.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_046_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_046_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_046_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_046_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '046', 'f', 'Birth date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 082 file: www.loc.gov/marc/authority/concise/ad082.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_082_ind_1', BTRIM($label$ - -First - Type of edition - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_082_ind_1', '0', 'Full', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_082_ind_1', '1', 'Abridged', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_082_ind_1', '7', 'Other edition specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_082_ind_2', BTRIM($label$ - -Second - Source of call number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_082_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_082_ind_2', '0', 'Assigned by LC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_082_ind_2', '4', 'Assigned by agency other than LC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '082', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 083 file: www.loc.gov/marc/authority/concise/ad083.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_083_ind_1', BTRIM($label$ - -First - Type of edition - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_083_ind_1', '0', 'Full', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_083_ind_1', '1', 'Abridged', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_083_ind_1', '7', 'Other edition specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_083_ind_2', BTRIM($label$ - -Second - Source of classification number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_083_ind_2', '0', 'Assigned by LC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_083_ind_2', '4', 'Assigned by agency other than LC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '083', 'a', 'Classification number element-single number or - beginning number of span (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008s.html - - UPDATE config.record_attr_definition - SET description = 'Frequency' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Regularity' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 19 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 20 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of continuing resource' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 21 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of original item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 22 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 23 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Nature of entire work' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 24 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Nature of contents' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 25 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Government publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 28 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Conference publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 29 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 30 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Original alphabet or script of title' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 33 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Entry convention' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 34 AND rec_type IN ('SER') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 18, '#', 'No determinable frequency', 'Used when the frequency is known to be - intentionally irregular. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'a', 'Annual', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'b', 'Bimonthly', 'Includes publications whose frequency is 6, - 7, or 8 numbers a year. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'c', 'Semiweekly', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'd', 'Daily', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'e', 'Biweekly', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'f', 'Semiannual', 'Includes publications whose frequency is 2 - numbers a year. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'g', 'Biennial', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'h', 'Triennial', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'i', 'Three times a week', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'j', 'Three times a month', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'k', 'Continuously updated', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'm', 'Monthly', 'Includes publications whose frequency is 9, - 10, 11, or 12 numbers a year. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'q', 'Quarterly', 'Includes publications whose frequency is 4 - numbers a year. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 's', 'Semimonthly', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 't', 'Three times a year', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'w', 'Weekly', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 19, 'n', 'Normalized irregular', 'Predictable irregularity pattern.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 19, 'r', 'Regular', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 19, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 19, 'x', 'Completely irregular', 'Used 1) when the frequency is known to be - intentionally irregular (008/18 is coded as - #); or 2) when the frequency in field 310 is - expressed as numbers per year. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 19, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, '#', 'None of the following', 'Also used for yearbooks and annual - reports. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'd', 'Updating database', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'g', 'Magazine', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'h', 'Blog', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'j', 'Journal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'l', 'Updating loose-leaf', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'm', 'Monographic series', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'n', 'Newspaper', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'p', 'Periodical', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'r', 'Repository', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 's', 'Newsletter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 't', 'Directory', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'w', 'Updating Web site', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '#', 'None of the following', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'a', 'Microfilm', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'b', 'Microfiche', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'c', 'Microopaque', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'd', 'Large print', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'e', 'Newspaper format', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'f', 'Braille', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 's', 'Electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '#', 'None of the following', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'a', 'Microfilm', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'b', 'Microfiche', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'c', 'Microopaque', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'd', 'Large print', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'f', 'Braille', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'r', 'Regular print reproduction', 'Eye-readable print, such as a photocopy.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 's', 'Electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '#', 'Not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'a', 'Abstracts/summaries', 'Abstracts or summaries of other - publications. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'b', 'Bibliographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'c', 'Catalogs', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'd', 'Dictionaries', 'Also includes glossaries or gazetteers.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'e', 'Encyclopedias', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'f', 'Handbooks', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'g', 'Legal articles', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'h', 'Biography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'i', 'Indexes', 'Index to bibliographical material other than - itself (e.g., an indexing journal). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'k', 'Discographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'l', 'Legislation', 'Full or partial texts of enactments of - legislative bodies or texts of rules and - regulations issued by executive or - administrative agencies. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'm', 'Theses', 'Thesis, dissertation, or work identified as - having been created to satisfy the - requirements for an academic certification or - degree. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'n', 'Surveys of literature in a subject area', 'Authored surveys that summarize what has been - published about a subject - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'o', 'Reviews', 'Critical reviews of published or performed - works (e.g., books, films, sound recordings, - theater, etc.). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'p', 'Programmed texts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'q', 'Filmographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'r', 'Directories', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 's', 'Statistics', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 't', 'Technical reports', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'u', 'Standards/specifications', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'v', 'Legal cases and case notes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'w', 'Law reports and digests', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'y', 'Yearbooks', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'z', 'Treaties', 'Treaties or accords negotiated between two or - more parties to settle a disagreement, - establish a relationship, grant rights, - etc. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '5', 'Calendars', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '6', 'Comics/graphic novels', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, '#', 'Not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'a', 'Abstracts/summaries', 'Abstracts or summaries of - other publications. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'b', 'Bibliographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'c', 'Catalogs', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'd', 'Dictionaries', 'Also used for a glossary or a gazetteer.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'e', 'Encyclopedias', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'f', 'Handbooks', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'g', 'Legal articles', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'h', 'Biography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'i', 'Indexes', 'Index to bibliographical material other than - itself (e.g., an indexing journal). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'k', 'Discographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'l', 'Legislation', 'Includes of full or partial texts of - enactments of legislative bodies, published - either in statute or in code form, or texts of - rules and regulations issued by executive or - administrative agencies. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'm', 'Theses', 'Thesis, dissertation, or work identified as - having been created to satisfy the - requirements for an academic certification or - degree. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'n', 'Surveys of literature in a subject area', 'Includes authored surveys that summarize what - has been published about a subject - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'o', 'Reviews', 'Includes critical reviews of published or - performed works (e.g., books, films, sound - recordings, theater, etc.). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'p', 'Programmed texts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'q', 'Filmographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'r', 'Directories', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 's', 'Statistics', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 't', 'Technical reports', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'u', 'Standards/specifications', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'v', 'Legal cases and case notes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'w', 'Law reports and digests', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'y', 'Yearbooks', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'z', 'Treaties', 'Includes treaties or accords negotiated - between two or more parties to settle a - disagreement, establish a relationship, grant - rights, etc. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, '5', 'Calendars', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, '6', 'Comics/graphic novels', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, '|||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '#', 'Not a government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'a', 'Autonomous or semi-autonomous component', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'c', 'Multilocal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'f', 'Federal/national', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'i', 'International intergovernmental', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'l', 'Local', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'm', 'Multistate', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'o', 'Government publication-level undetermined', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 's', 'State, provincial, territorial, dependent, - etc.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'u', 'Unknown if item is government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '0', 'Not a conference publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '1', 'Conference publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '#', 'No alphabet or script given/No key title', 'May relate to the title proper in field 245 - when no key title is present. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'a', 'Basic Roman', 'Includes no diacritics or special - characters. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'b', 'Extended Roman', 'Includes diacritics and special - characters. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'c', 'Cyrillic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'd', 'Japanese', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'e', 'Chinese', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'f', 'Arabic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'g', 'Greek', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'h', 'Hebrew', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'i', 'Thai', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'j', 'Devanagari', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'k', 'Korean', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'l', 'Tamil', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'z', 'Other', 'Also used when the title incorporates words - from more than one alphabet or script. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '0', 'Successive entry', 'New bibliographic record is created each time - 1) a title changes, or 2) a corporate body - used as main entry or uniform title qualifier, - changes. The earlier or later title or - author/title is recorded in a linking field - (field 780/785) on each record. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '1', 'Latest entry', 'Cataloged under its latest (most recent) - title or issuing body (pre-AACR cataloging - rules). All former titles and/or issuing - bodies are given in notes (fields 247, 547, - and 550). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '2', 'Integrated entry', 'Cataloged under its latest (most recent) - title and/or responsible person or corporate - body. Used for integrating resources and - electronic serials that do not retain their - earlier titles. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 046 file: www.loc.gov/marc/bibliographic/concise/bd046.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_046_ind_1', BTRIM($label$ - -First - Type of entity - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_046_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_046_ind_1', '1', 'Work', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_046_ind_1', '2', 'Expression', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_046_ind_1', '3', 'Manifestation', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_046_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_046_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '046', 'a', 'Type of date code (NR) -Codes -iInclusive dates of collectionkBulk of collectionmMultiple datesnUnknown datepDistribution/release/issue and production/recording session - datesqQuestionable daterReissue and original datessSingle known/probable datetPublication and copyright datesxIncorrect dates','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 334 file: www.loc.gov/marc/bibliographic/concise/bd334.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_334_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_334_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_334_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_334_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '334', 'a', 'Mode of issuance term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 353 file: www.loc.gov/marc/bibliographic/concise/bd353.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_353_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_353_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_353_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_353_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '353', 'a', 'Supplementary content term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 852 file: www.loc.gov/marc/bibliographic/concise/bd852.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_852_ind_1', BTRIM($label$ - -First - Shelving scheme - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '0', 'Library of Congress classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '1', 'Dewey Decimal classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '2', 'National Library of Medicine classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '3', 'Superintendent of Documents classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '4', 'Shelving control number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '5', 'Title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '6', 'Shelved separately', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '7', 'Source specified in subfield $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '8', 'Other scheme', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_852_ind_2', BTRIM($label$ - -Second - Shelving order - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_2', '0', 'Not enumeration', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_2', '1', 'Primary enumeration', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_2', '2', 'Alternative enumeration', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '852', 'a', 'Location (NR) -Institution or person holding the item or from which access is given. Contains a - MARC code of the holding institution or the name of the institution or person. -See: MARC Code List for Organizations.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 361 file: www.loc.gov/marc/authority/concise/ad361.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_361_ind_1', BTRIM($label$ - -First - Privacy - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_361_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_361_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_361_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_361_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_361_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '361', 'a', 'Name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 368 file: www.loc.gov/marc/authority/concise/ad368.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_368_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_368_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_368_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_368_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '368', 'a', 'Type of corporate body (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 857 file: www.loc.gov/marc/authority/concise/ad857.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_857_ind_1', BTRIM($label$ - -First - Access method - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_1', '1', 'FTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_1', '4', 'HTTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_1', '7', 'Method specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_857_ind_2', BTRIM($label$ - -Second - Relationship - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '0', 'Resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '1', 'Version of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '2', 'Related resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '3', 'Component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '4', 'Version of component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '857', 'b', 'Name of archiving agency (NR) -Agency responsible for the Web archive or digital archive repository.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008a.html - - UPDATE config.record_attr_definition - SET description = 'Date entered on file' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 0 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of date/Publication status' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 6 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Date 1' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 7 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Date 2' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 11 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Place of publication, production, or execution' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 15 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Language' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 35 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Modified record' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 38 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Cataloging source' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 39 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 6, 'b', 'No dates given; B.C. date involved', 'Each character position in fields 008/07-10 and 008/11-14 contains a blank.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'c', 'Continuing resource currently published', '008/07-10 contain the beginning date of publication; 008/11-14 contain the - characters 9999. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'd', 'Continuing resource ceased publication', '008/07-10 contain the beginning date of publication; 008/11-14 contain the date - the item ceased to be published. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'e', 'Detailed date', '008/07-10 contain the year and 008/11-14 contain the month and day formatted - mmdd. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'i', 'Inclusive dates of collection', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'k', 'Range of years of bulk of collection', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'm', 'Multiple dates', '008/07-10 usually contain the initial (or beginning) date and 008/11-14 the - terminal (or ending) date. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'n', 'Dates unknown', 'Dates appropriate for 008/07-10 and 008/11-14 are unknown, (e.g., when no dates - are given in field 260). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'p', 'Date of distribution/release/issue and production/recording session when - different', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'q', 'Questionable date', 'Earliest possible date is given in 008/07-10; latest possible date in - 008/11-14. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'r', 'Reprint/reissue date and original date', '008/07-10 contain the date of reproduction or reissue; 008/11-14 contain the - date of the original, if known. 008/11-14 contain code u ("uuuu"), if - unknown. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 's', 'Single known date/probable date', '008/07-10 contain the date; 008/11-14 contain blanks (####).', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 't', 'Publication date and copyright date', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'u', 'Continuing resource status unknown', '008/07-10 contain a beginning date of publication; 008/11-14 contain the - characters uuuu since no ending date is known. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 7, '1-9', 'Date digit', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 7, '#', 'Date element is not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'u', 'Date element is totally or partially unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 7, '||||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 11, '1-9', 'Date digit', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 11, '#', 'Date element is not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'u', 'Date element is totally or partially unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 11, '||||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, '#', 'Not modified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 'd', 'Dashed-on information omitted', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 'o', 'Completely romanized/printed cards romanized', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 'r', 'Completely romanized/printed cards in script', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 's', 'Shortened', 'Some of the data was omitted because the data exceeded the maximum length - allowed by the system used to create or process it. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 'x', 'Missing characters', 'Record contained characters that could not be converted to machine-readable - form (e.g., incidental nonroman characters on predominantly roman alphabet - records, mathematical symbols, etc.). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 39, '#', 'National bibliographic agency', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 39, 'c', 'Cooperative cataloging program', 'Creator of the cataloging data is a participant (other than a national - bibliographic agency) in a cooperative cataloging program. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 39, 'd', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 39, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 39, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 041 file: www.loc.gov/marc/bibliographic/concise/bd041.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_041_ind_1', BTRIM($label$ - -First - Translation indication - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_041_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_041_ind_1', '0', 'Item not a translation/does not include a - translation', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_041_ind_1', '1', 'Item is or includes a translation', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_041_ind_2', BTRIM($label$ - -Second - Source of code - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_041_ind_2', '#', 'MARC language code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_041_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '041', 'a', 'Language code of text/sound track or separate - title (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 361 file: www.loc.gov/marc/bibliographic/concise/bd361.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_361_ind_1', BTRIM($label$ - -First - Privacy - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_361_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_361_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_361_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_361_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_361_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '361', 'a', 'Name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 561 file: www.loc.gov/marc/bibliographic/concise/bd561.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_561_ind_1', BTRIM($label$ - -First - Privacy - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_561_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_561_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_561_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_561_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_561_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '561', 'a', 'History (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 653 file: www.loc.gov/marc/bibliographic/concise/bd653.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_653_ind_1', BTRIM($label$ - -First - Level of index term - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_1', '0', 'No level specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_1', '1', 'Primary', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_1', '2', 'Secondary', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_653_ind_2', BTRIM($label$ - -Second - Type of term or name - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '0', 'Topical term', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '1', 'Personal name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '2', 'Corporate name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '3', 'Meeting name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '4', 'Chronological term', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '5', 'Geographic name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '6', 'Genre/form term', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '653', 'a', 'Uncontrolled term (R) -Index term is from an uncontrolled subject heading system or thesaurus.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 658 file: www.loc.gov/marc/bibliographic/concise/bd658.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_658_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_658_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_658_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_658_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '658', 'a', 'Main curriculum objective (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 720 file: www.loc.gov/marc/bibliographic/concise/bd720.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_720_ind_1', BTRIM($label$ - -First - Type of name - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_720_ind_1', '#', 'Not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_720_ind_1', '1', 'Personal', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_720_ind_1', '2', 'Other', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_720_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_720_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '720', 'a', 'Name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 857 file: www.loc.gov/marc/bibliographic/concise/bd857.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_857_ind_1', BTRIM($label$ - -First - Access method - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_1', '1', 'FTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_1', '4', 'HTTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_1', '7', 'Method specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_857_ind_2', BTRIM($label$ - -Second - Relationship - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '0', 'Resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '1', 'Version of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '2', 'Related resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '3', 'Component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '4', 'Version of component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '857', 'b', 'Name of archiving agency (NR) -Agency responsible for the Web archive or digital archive repository.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 270 file: www.loc.gov/marc/bibliographic/concise/bd270.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_270_ind_1', BTRIM($label$ - -First - Level - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_270_ind_1', '#', 'No level specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_270_ind_1', '1', 'Primary', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_270_ind_1', '2', 'Secondary', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_270_ind_2', BTRIM($label$ - -Second - Type of address - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_270_ind_2', '#', 'No type specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_270_ind_2', '0', 'Mailing', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_270_ind_2', '7', 'Type specified in subfield $i', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '270', 'a', 'Address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 506 file: www.loc.gov/marc/bibliographic/concise/bd506.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_506_ind_1', BTRIM($label$ - -First - Restriction - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_506_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_506_ind_1', '0', 'No restrictions', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_506_ind_1', '1', 'Restrictions apply', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_506_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_506_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '506', 'a', 'Terms governing access (NR) -Legal, physical, or procedural restrictions imposed on individuals wishing to - see the described materials.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 540 file: www.loc.gov/marc/bibliographic/concise/bd540.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_540_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_540_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_540_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_540_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '540', 'a', 'Terms governing use and reproduction (NR) -Usually mean the text of a legal or official statement of restrictions.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 730 file: www.loc.gov/marc/bibliographic/concise/bd730.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_730_ind_1', BTRIM($label$ - -First - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_730_ind_2', BTRIM($label$ - -Second - Type of added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_2', '2', 'Analytical entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '730', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 758 file: www.loc.gov/marc/bibliographic/concise/bd758.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_758_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_758_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_758_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_758_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '758', 'a', 'Label (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 883 file: www.loc.gov/marc/authority/concise/ad883.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_883_ind_1', BTRIM($label$ - -First - Method of assignment - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_883_ind_1', '#', 'No information provided/not applicable', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_883_ind_1', '0', 'Fully machine-generated', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_883_ind_1', '1', 'Partially machine-generated', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_883_ind_1', '2', 'Not machine-generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_883_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_883_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '883', 'a', 'Creation process (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 310 file: www.loc.gov/marc/bibliographic/concise/bd310.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_310_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_310_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_310_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_310_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '310', 'a', 'Current publication frequency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 321 file: www.loc.gov/marc/bibliographic/concise/bd321.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_321_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_321_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_321_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_321_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '321', 'a', 'Former publication frequency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 883 file: www.loc.gov/marc/bibliographic/concise/bd883.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_883_ind_1', BTRIM($label$ - -First - Method of assignment - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_883_ind_1', '#', 'No information provided/not applicable', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_883_ind_1', '0', 'Fully machine-generated', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_883_ind_1', '1', 'Partially machine-generated', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_883_ind_1', '2', 'Not machine-generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_883_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_883_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '883', 'a', 'Creation process (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008m.html - - UPDATE config.record_attr_definition - SET description = 'Form of composition' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Format of music' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 20 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Music parts' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 21 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Target audience' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 22 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 23 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Accompanying matter' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 24 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Literary text for sound recordings' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 30 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 32 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Transposition and arrangement' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 33 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 34 AND rec_type IN ('SCO') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 18, 'an', 'Anthems', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'bd', 'Ballads', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'bg', 'Bluegrass music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'bl', 'Blues', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'bt', 'Ballets', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ca', 'Chaconnes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cb', 'Chants, Other religions', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cc', 'Chant, Christian', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cg', 'Concerti grossi', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ch', 'Chorales', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cl', 'Chorale preludes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cn', 'Canons and rounds', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'co', 'Concertos', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cp', 'Chansons, polyphonic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cr', 'Carols', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cs', 'Chance compositions', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ct', 'Cantatas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cy', 'Country music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cz', 'Canzonas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'df', 'Dance forms', 'Includes music for individual dances except for mazurkas, minuets, pavans, - polonaises, and waltzes, which have separate codes. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'dv', 'Divertimentos, serenades, cassations, divertissements, and notturni', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'fg', 'Fugues', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'fl', 'Flamenco', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'fm', 'Folk music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ft', 'Fantasias', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'gm', 'Gospel music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'hy', 'Hymns', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'jz', 'Jazz', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mc', 'Musical revues and comedies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'md', 'Madrigals', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mi', 'Minuets', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mo', 'Motets', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mp', 'Motion picture music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mr', 'Marches', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ms', 'Masses', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mu', 'Multiple forms', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mz', 'Mazurkas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'nc', 'Nocturnes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'nn', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'op', 'Operas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'or', 'Oratorios', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ov', 'Overtures', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'pg', 'Program music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'pm', 'Passion music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'po', 'Polonaises', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'pp', 'Popular music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'pr', 'Preludes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ps', 'Passacaglias', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'pt', 'Part-songs', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'pv', 'Pavans', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'rc', 'Rock music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'rd', 'Rondos', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'rg', 'Ragtime music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ri', 'Ricercars', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'rp', 'Rhapsodies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'rq', 'Requiems', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'sd', 'Square dance music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'sg', 'Songs', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'sn', 'Sonatas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'sp', 'Symphonic poems', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'st', 'Studies and exercises', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'su', 'Suites', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'sy', 'Symphonies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'tc', 'Toccatas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'tl', 'Teatro lirico', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ts', 'Trio-sonatas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'uu', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'vi', 'Villancicos', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'vr', 'Variations', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'wz', 'Waltzes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'za', 'Zarzuelas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'zz', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'a', 'Full score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'b', 'Miniature or study score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'c', 'Accompaniment reduced for keyboard', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'd', 'Voice score with accompaniment omitted', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'e', 'Condensed score or piano-conductor score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'g', 'Close score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'h', 'Chorus score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'i', 'Condensed score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'j', 'Performer-conductor part', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'k', 'Vocal score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'l', 'Score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'm', 'Multiple score formats', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'p', 'Piano score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, '#', 'No parts in hand or not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'd', 'Instrumental and vocal parts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'e', 'Instrumental parts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'f', 'Vocal parts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '#', 'Unknown or unspecified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'a', 'Preschool', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'b', 'Primary', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'c', 'Pre-adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'd', 'Adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'e', 'Adult', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'f', 'Specialized', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'g', 'General', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'j', 'Juvenile', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '#', 'None of the following', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'a', 'Microfilm', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'b', 'Microfiche', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'c', 'Microopaque', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'd', 'Large print', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'f', 'Braille', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'r', 'Regular print reproduction', 'Eye-readable print, such as a photocopy.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 's', 'Electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '#', 'No accompanying matter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'a', 'Discography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'b', 'Bibliography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'c', 'Thematic index', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'd', 'Libretto or text', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'e', 'Biography of composer or author', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'f', 'Biography of performer or history of ensemble', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'g', 'Technical and/or historical information on instruments', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'h', 'Technical information on music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'i', 'Historical information', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'k', 'Ethnological information', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'r', 'Instructional materials', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 's', 'Music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, '#', 'Item is a music sound recording', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'a', 'Autobiography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'b', 'Biography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'c', 'Conference proceedings', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'd', 'Drama', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'e', 'Essays', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'f', 'Fiction', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'g', 'Reporting', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'h', 'History', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'i', 'Instruction', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'j', 'Language instruction', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'k', 'Comedy', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'l', 'Lectures, speeches', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'm', 'Memoirs', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'o', 'Folktales', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'p', 'Poetry', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'r', 'Rehearsals', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 's', 'Sounds', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 't', 'Interviews', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '#', 'Not arrangement or transposition or not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'a', 'Transposition', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'b', 'Arrangement', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'c', 'Both transposed and arranged', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 028 file: www.loc.gov/marc/bibliographic/concise/bd028.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_028_ind_1', BTRIM($label$ - -First - Type of number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '0', 'Issue number - Number used to identify the issue designation, or serial identification, - assigned by a publisher to a specific sound recording, side of a sound - recording, or performance on a sound recording or to a group of sound - recordings issued as a set.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '1', 'Matrix number - Master from which the specific recording was pressed.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '2', 'Plate number - Assigned by a publisher to a specific music publication.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '3', 'Other music publisher number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '4', 'Video recording publisher number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '5', 'Other publisher number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '6', 'Distributor number', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_028_ind_2', BTRIM($label$ - -Second - Note/added entry controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_2', '0', 'No note, no added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_2', '1', 'Note, added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_2', '2', 'Note, no added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_2', '3', 'No note, added entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '028', 'a', 'Publisher or distributor number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 037 file: www.loc.gov/marc/bibliographic/concise/bd037.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_037_ind_1', BTRIM($label$ - -First - Source of acquisition sequence - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_037_ind_1', '#', 'Not applicable/No information provided/Earliest', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_037_ind_1', '2', 'Intervening', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_037_ind_1', '3', 'Current/Latest', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_037_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_037_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '037', 'a', 'Stock number (NR) -Numbers such as distributor, publisher, or vendor numbers for resources - other than music, music-related, or audiovisual materials are also recorded in - this subfield.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: lea file: www.loc.gov/marc/bibliographic/concise/bdleader.html - - UPDATE config.record_attr_definition - SET description = 'Record length' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 0 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Record status' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 5 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of record' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 6 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Bibliographic level' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 7 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of control' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 8 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Character coding scheme' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 9 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Indicator count' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 10 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Subfield code count' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 11 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Base address of data' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 12 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Encoding level' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 17 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Descriptive cataloging form' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 18 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Multipart resource record level' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 19 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Length of the length-of-field portion' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 20 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Length of the starting-character-position portion' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 21 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Length of the implementation-defined portion' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 22 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 23 AND rec_type NOT IN ('AUT') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('ldr', 5, 'a', 'Increase in encoding level', 'Encoding level (Leader/17) of the record has been changed to a higher encoding - level. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 5, 'c', 'Corrected or revised', 'Addition/change other than in the Encoding level code has been made to the - record. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 5, 'd', 'Deleted', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 5, 'n', 'New', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 5, 'p', 'Increase in encoding level from prepublication', 'Prepublication record has had a change in cataloging level resulting from the - availability of the published item. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'a', 'Language material', 'Includes microforms and electronic resources that are basically textual in - nature, whether they are reproductions from print or originally produced. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'c', 'Notated music', 'Used for printed, microform, or electronic notated music.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'd', 'Manuscript notated music', 'Used for manuscript notated music or a microform of manuscript music.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'e', 'Cartographic material', 'Includes maps, atlases, globes, digital maps, and other cartographic items.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'f', 'Manuscript cartographic material', 'Used for manuscript cartographic material or a microform of manuscript - cartographic material. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'g', 'Projected medium', 'Used for motion pictures, videorecordings (including digital video), - filmstrips, slide, transparencies or material specifically designed for - projection. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'i', 'Nonmusical sound recording', 'Used for a recording of nonmusical sounds (e.g., speech).', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'j', 'Musical sound recording', 'Used for a musical sound recording (e.g., phonodiscs, compact discs, or - cassette tapes. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'k', 'Two-dimensional nonprojectable graphic', 'Used for two-dimensional nonprojectable graphics such as, activity cards, - charts, collages, computer graphics, digital pictures, drawings, duplication - masters, flash cards, paintings, photo CDs, photomechanical reproductions, - photonegatives, photoprints, pictures, postcards, posters, prints, spirit - masters, study prints, technical drawings, transparency masters, and - reproductions of any of these. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'm', 'Computer file', 'Used for the following classes of electronic resources: computer software - (including programs, games, fonts), numeric data, computer-oriented multimedia, - online systems or services. For these classes of materials, if there is a - significant aspect that causes it to fall into another Leader/06 category, the - code for that significant aspect is used instead of code m (e.g., vector data - that is cartographic is not coded as numeric but as cartographic). Other - classes of electronic resources are coded for their most significant aspect - (e.g. language material, graphic, cartographic material, sound, music, moving - image). In case of doubt or if the most significant aspect cannot be - determined, consider the item a computer file. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'o', 'Kit', 'Used for a mixture of various components issued as a unit and intended - primarily for instructional purposes where no one item is the predominant - component of the kit. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'p', 'Mixed materials', 'Used when there are significant materials in two or more forms that are usually - related by virtue of their having been accumulated by or about a person or - body. Includes archival fonds and manuscript collections of mixed forms of - materials, such as text, photographs, and sound recordings. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'r', 'Three-dimensional artifact or naturally occurring object', 'Includes man-made objects such as models, dioramas, games, puzzles, - simulations, sculptures and other three-dimensional art works, exhibits, - machines, clothing, toys, and stitchery. Also includes naturally occurring - objects such as, microscope specimens (or representations of them) and other - specimens mounted for viewing. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 't', 'Manuscript language material', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 'a', 'Monographic component part', 'Monographic bibliographic unit that is physically attached to or contained in - another unit such that the retrieval of the component part is dependent on the - identification and location of the host item or container. Contains fields that - describe the component part and data that identify the host, field 773 (Host - Item Entry). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 'b', 'Serial component part', 'Serial bibliographic unit that is physically attached to or contained in - another unit such that the retrieval of the component part is dependent on the - identification and location of the host item or container. Contains fields that - describe the component part and data that identify the host, field 773 (Host - Item Entry). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 'c', 'Collection', 'Made-up multipart group of items that were not originally published, - distributed, or produced together. The record describes units defined by common - provenance or administrative convenience for which the record is intended as - the most comprehensive in the system. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 'd', 'Subunit', 'Part of collection, especially an archival unit described collectively - elsewhere in the system. Contains fields that describe the subunit and data - that identify the host item. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 'i', 'Integrating resource', 'Bibliographic resource that is added to or changed by means of updates that do - not remain discrete and are integrated into the whole. Examples include - updating loose-leafs and updating Web sites. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 'm', 'Monograph/Item', 'Item either complete in one part (e.g., a single monograph, a single map, a - single manuscript, etc.) or intended to be completed, in a finite number of - separate parts (e.g., a multivolume monograph, a sound recording with multiple - tracks, etc.). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 's', 'Serial', 'Bibliographic item issued in successive parts bearing numerical or - chronological designations and intended to be continued indefinitely. Includes - periodicals; newspapers; annuals (reports, yearbooks, etc.); the journals, - memoirs, proceedings, transactions, etc., of societies; and numbered - monographic series, etc. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 8, 'a', 'Archival', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 9, '#', 'MARC-8', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 9, 'a', 'UCS/Unicode', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '#', 'Full level', 'Most complete MARC record created from information derived from an inspection - of the physical item. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '1', 'Full level, material not examined', 'Next most complete MARC record after the full level created from information - derived from an extant description of the item (e.g., a printed catalog card or - a description in an institutional guide) without reinspection of the physical - item. Used primarily in the retrospective conversion of records when all of the - information on the extant description is transcribed. Certain control field - coding and other data (e.g., field 043 (Geographic Area Code)) are based only - on explicit information in the description. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '2', 'Less-than-full level, material not examined', 'Less-than-full level record (i.e., a record that falls between minimal level - and full) created from an extant description of the material (e.g., a printed - catalog card) without reinspection of the physical item. Used primarily in the - retrospective conversion of records when all of the descriptive access points - but only a specified subset of other data elements are transcribed. - Authoritative headings may not be current. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '3', 'Abbreviated level', 'Brief record that does not meet minimal level cataloging specifications. - Headings in the records may reflect established forms to the extent that such - forms were available at the time the record was created. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '4', 'Core level', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '5', 'Partial (preliminary) level', 'Preliminary cataloging level record that is not considered final by the - creating agency (e.g., the headings may not reflect established forms; the - record may not meet national-level cataloging specifications). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '7', 'Minimal level', 'Record that meets the U.S. National Level Bibliographic Record minimal level - cataloging specifications and is considered final by the creating agency. - Headings have been checked against an authority file and reflect established - forms to the extent that such forms were available at the time the minimal - level record was created. The U.S. requirements for minimal-level records can - be found in National Level and Minimal - Level Record Requirements', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '8', 'Prepublication level', 'Prepublication level record. Includes records created in cataloging in - publication programs. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, 'u', 'Unknown', 'Used by an agency receiving or sending data with a local code in Leader/17 - cannot adequately determine the appropriate encoding level of the record. Code - u thus replaces the local code. Not used in newly input or updated records. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, 'z', 'Not applicable', 'Concept of encoding level does not apply to the record.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 18, '#', 'Non-ISBD', 'Descriptive portion of the record does not follow International Standard - Bibliographic Description (ISBD) cataloging and punctuation - provisions. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 18, 'a', 'AACR 2', 'Descriptive portion of the record is formulated according to the description and - punctuation provisions as incorporated into the Anglo-American Cataloging Rules, - 2nd Edition (AACR 2) and its manuals. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 18, 'c', 'ISBD punctuation omitted', 'Descriptive portion of the record contains the punctuation provisions of ISBD, - except ISBD punctuation is not present at the end of a subfield. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 18, 'i', 'ISBD punctuation included', 'Descriptive portion of the record contains the punctuation provisions of ISBD.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 18, 'n', 'Non-ISBD punctuation omitted', 'Descriptive portion of the record does not follow International Standard Bibliographic - Description (ISBD) cataloging and punctuation provisions, and punctuation is not - present at the end of a subfield. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 18, 'u', 'Unknown', 'Institution receiving or sending data in Leader/18 cannot adequately determine - the appropriate descriptive cataloging form used in the record. May be used in - records converted from another metadata format. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 19, '#', 'Not specified or not applicable', 'The distinction between record levels is not specified or not applicable for - the type of resource. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 19, 'a', 'Set', 'Record is for a set consisting of multiple items.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 19, 'b', 'Part with independent title', 'The record is for a resource which is part of a set and has a title that allows it - to be independent of the set record. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 19, 'c', 'Part with dependent title', 'The record is for a resource which is part of a set but has a title that makes it - dependent on the set record to understand its context. - ', 'biblio'); --- category: authority tag: 055 file: www.loc.gov/marc/authority/concise/ad055.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_055_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_055_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_055_ind_2', BTRIM($label$ - -Second - Source of call number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_055_ind_2', '0', 'Assigned by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_055_ind_2', '4', 'Assigned by agency other than LAC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '055', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 251 file: www.loc.gov/marc/bibliographic/concise/bd251.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_251_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_251_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_251_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_251_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '251', 'a', 'Version (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 341 file: www.loc.gov/marc/bibliographic/concise/bd341.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_341_ind_1', BTRIM($label$ - -First - Application - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_341_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_341_ind_1', '0', 'Adaptive features to access primary content', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_341_ind_1', '1', 'Adaptive features to access secondary content', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_341_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_341_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '341', 'a', 'Content access mode (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 688 file: www.loc.gov/marc/bibliographic/concise/bd688.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_688_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_688_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_688_ind_2', BTRIM($label$ - -Second - Source of name, title, or term - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_688_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_688_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '688', 'a', 'Name, title, or term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007s.html - - UPDATE config.record_attr_definition - SET description = 'Category of material' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 0 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Specific material designation' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 1 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 2 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Speed' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 3 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Configuration of playback channels' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 4 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Groove width/groove pitch' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 5 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Dimensions' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 6 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Tape width' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 7 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Tape Configuration' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 8 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Kind of disc, cylinder or tape' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 9 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Kind of material' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 10 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Kind of cutting' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 11 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Special playback characteristics' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 12 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Original capture and storage technique' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 13 AND rec_type NOT IN ('AUT') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('007', 0, 's', 'Sound recording', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'b', 'Belt', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'd', 'Sound disc', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'e', 'Cylinder', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'g', 'Sound cartridge', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'i', 'Sound-track film', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'q', 'Roll', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'r', 'Remote', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 's', 'Sound cassette', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 't', 'Sound-tape reel', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'u', 'Unspecified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'w', 'Wire recording', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'a', '16 rpm (discs)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'b', '33 1/3 rpm (discs)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'c', '45 rpm (discs)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'd', '78 rpm (discs)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'e', '8 rpm (discs)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'f', '1.4 m. per second (discs)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'h', '120 rpm (cylinders)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'i', '160 rpm (cylinders)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'k', '15/16 ips (tapes)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'l', '1 7/8 ips (tapes)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'm', '3 3/4 ips (tapes)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'o', '7 1/2 ips (tapes)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'p', '15 ips (tapes)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'r', '30 ips (tape)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'm', 'Monaural', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'q', 'Quadraphonic, multichannel, or surround', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 's', 'Stereophonic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'm', 'Microgroove/fine', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 's', 'Coarse/standard', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'a', '3 in. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'b', '5 in. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'c', '7 in. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'd', '10 in. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'e', '12 in. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'f', '16 in. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'g', '4 3/4 in. or 12 cm. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'j', '3 7/8 x 2 1/2 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'o', '5 1/4 x 3 7/8 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 's', '2 3/4 x 4 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'l', '1/8 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'm', '1/4 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'o', '1/2 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'p', '1 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'a', 'Full (1) track', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'b', 'Half (2) track', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'c', 'Quarter (4) track', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'd', 'Eight track', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'e', 'Twelve track', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'f', 'Sixteen track', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'a', 'Master tape', 'Final tape production master that is used to make a disc master or a tape - duplication master. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'b', 'Tape duplication master', 'Sound tape produced from the master tape.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'd', 'Disc master (negative)', 'Negative disc master that is used for the preparation of the mother from which - more serviceable and longer lasting metal stampers can be made. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'i', 'Instantaneous (recorded on the spot)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'm', 'Mass-produced', 'Includes discs or tapes issued as limited pressing or limited - issue for private distribution. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'r', 'Mother (positive)', 'Exact copy of the original disc recording pressed from the disc master. From - the metal mother a negative metal stamper is made to press - discs for distribution. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 's', 'Stamper (negative)', 'Negative metal part, produced from the mother in an electroplating - procedure, from which 500 to 750 discs may be pressed. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 't', 'Test pressing', 'Either one finished disc or one of a very limited pressing is made, designed to - be examined aurally before a decision is made to proceed with a pressing. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'u', 'Unknown', 'Type of disc, cylinder, or tape is not known.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'a', 'Lacquer coating', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'b', 'Cellulose nitrate', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'c', 'Acetate tape with ferrous oxide', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'g', 'Glass with lacquer', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'i', 'Aluminum with lacquer', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'l', 'Metal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'm', 'Plastic with metal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'p', 'Plastic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'r', 'Paper with lacquer or ferrous oxide', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 's', 'Shellac', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'w', 'Wax', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'h', 'Hill-and-dale cutting', 'Vertical cutting, with no lateral information intended for reproduction.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'l', 'Lateral or combined cutting', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'n', 'Not applicable', 'Compact audio discs are coded n as they are pitted rather than cut.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'a', 'NAB standard', 'National Association of Broadcasters (NAB) standard was used for the - transcription of the recording and NAB playback equalization is required. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'b', 'CCIR standard', 'Comité consultatif de la radiodiffusion (CCIR) standard was used for the - transcription of the recording and CCIR playback equalization is required. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'c', 'Dolby-B encoded', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'd', 'dbx encoded', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'e', 'Digital recording', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'f', 'Dolby-A encoded', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'g', 'Dolby-C encoded', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'h', 'CX encoded', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'a', 'Acoustical capture, analog direct storage', 'Recorded sound originally captured using an acoustical horn and - diaphragm and stored directly on a surface such as a disc or - cylinder. Most acoustical recordings date from the era beginning - in 1877, when the first practical commercial recording machines - were developed, until the mid-to-late 1920s, a transitional period - marked by the release of the earliest electrical recordings in 1925. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'b', 'Electrical capture, analog direct storage', 'Recorded sound originally captured using microphones and other electrical - equipment and stored directly on the surface of a disc. All recordings - that were made with microphones and other electrical equipment used direct - storage beginning with the earliest electrical recordings in 1925 through - the late 1940s. More recent commercial recordings marked "direct to disc" - or some equivalent phrase also used this technique. Also known as - electromechanical recording. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'd', 'Electrical capture, digital storage', 'Recorded sound originally captured electrically and stored using digital - techniques, which became available in the 1980s. Such recordings may be - identified as "digitally recorded" or by use of a similar phrase on the - label or package. However, designations such as "digital remastering" or - "digital mixing" are post-capture and storage processes and are not meant - to suggest that the original capture or storage techniques were digital. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'e', 'Electrical capture, analog electrical storage', 'Sound recordings which were captured using electrical techniques and - stored as modulations and pulses on a magnetic surface. Most recordings - made from the late 1940s until the transitional period from the early - 1980s through the early 1990s are analog electrical recordings. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'u', 'Unknown capture and storage', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 034 file: www.loc.gov/marc/bibliographic/concise/bd034.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_034_ind_1', BTRIM($label$ - -First - Type of scale - - Specifies the type of scale information given. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_034_ind_1', '0', 'Scale indeterminable/No scale recorded - Used when no representative fraction is given in field 255 - or no field 255 is present in the record.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_034_ind_1', '1', 'Single scale', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_034_ind_1', '3', 'Range of scales', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_034_ind_2', BTRIM($label$ - -Second - Type of ring - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_034_ind_2', '#', 'Not applicable', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_034_ind_2', '0', 'Outer ring', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_034_ind_2', '1', 'Exclusion ring', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '034', 'a', 'Category of scale (NR) -One-character alphabetic code indicating the type of scale of the item. -Used even when a specific scale is not recorded (first indicator position contains - value 0). For non-cartographic materials (i.e. images, graphic materials, - textual materials, etc.) subfield $a is not used. The codes used in - subfield $a are: - -a - Linear scale -b - Angular scale -z - Other type of scale','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 344 file: www.loc.gov/marc/bibliographic/concise/bd344.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_344_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_344_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_344_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_344_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '344', 'a', 'Type of recording (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 260 file: www.loc.gov/marc/bibliographic/concise/bd260.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_260_ind_1', BTRIM($label$ - -First - Sequence of publishing statements - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_260_ind_1', '#', 'Not applicable/No information provided/Earliest available publisher', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_260_ind_1', '2', 'Intervening publisher', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_260_ind_1', '3', 'Current/latest publisher', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_260_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_260_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '260', 'a', 'Place of publication, distribution, etc. (R) -May contain the abbreviation [S.l.] when the place is unknown.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 020 file: www.loc.gov/marc/authority/concise/ad020.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_020_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_020_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_020_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_020_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '020', 'a', 'International Standard Book Number (NR) -Valid ISBN. ISBN and the - embedded hyphens may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 015 file: www.loc.gov/marc/bibliographic/concise/bd015.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_015_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_015_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_015_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_015_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '015', 'a', 'National bibliography number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 020 file: www.loc.gov/marc/bibliographic/concise/bd020.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_020_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_020_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_020_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_020_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '020', 'a', 'International Standard Book Number (NR) -Valid ISBN. ISBN and the - embedded hyphens may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 024 file: www.loc.gov/marc/bibliographic/concise/bd024.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_024_ind_1', BTRIM($label$ - -First - Type of standard number or code - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '0', 'International Standard Recording Code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '1', 'Universal Product Code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '2', 'International Standard Music Number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '3', 'International Article Number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '4', 'Serial Item and Contribution Identifier', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '7', 'Source specified in subfield $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '8', 'Unspecified type of standard number or code', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_024_ind_2', BTRIM($label$ - -Second - Difference indicator - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_2', '0', 'No difference', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_2', '1', 'Difference', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '024', 'a', 'Standard number or code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 027 file: www.loc.gov/marc/bibliographic/concise/bd027.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_027_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_027_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_027_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_027_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '027', 'a', 'Standard technical report number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - - - DO $$ - DECLARE - rec_cat config.marc_record_type; - rec_tag TEXT; - BEGIN - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '014'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '016'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '020'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '022'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '023'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '024'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '031'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '034'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '035'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '040'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '042'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '043'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '045'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '046'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '050'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '052'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '053'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '055'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '060'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '065'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '066'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '070'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '072'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '073'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '075'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '080'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '082'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '083'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '086'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '087'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '09x'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '100'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '110'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '111'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '130'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '147'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '148'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '150'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '151'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '155'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '162'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '180'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '181'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '182'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '185'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '260'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '335'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '336'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '348'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '360'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '361'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '368'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '370'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '371'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '372'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '373'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '374'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '375'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '376'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '377'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '378'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '380'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '381'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '382'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '383'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '384'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '385'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '386'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '387'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '388'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '400'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '410'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '411'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '430'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '447'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '448'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '450'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '451'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '455'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '462'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '480'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '481'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '482'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '485'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '500'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '510'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '511'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '530'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '547'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '548'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '550'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '551'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '555'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '562'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '580'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '581'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '582'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '585'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '640'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '641'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '642'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '643'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '644'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '645'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '646'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '663'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '664'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '665'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '666'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '667'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '670'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '672'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '673'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '675'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '677'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '678'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '680'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '681'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '682'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '688'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '700'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '710'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '711'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '730'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '747'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '748'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '750'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '751'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '755'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '762'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '780'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '781'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '782'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '785'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '788'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '856'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '857'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '880'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '883'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '884'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '885'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '013'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '015'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '016'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '017'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '018'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '020'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '022'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '023'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '024'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '025'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '026'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '027'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '028'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '030'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '031'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '032'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '033'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '034'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '035'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '036'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '037'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '038'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '040'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '041'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '042'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '043'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '044'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '045'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '046'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '047'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '048'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '050'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '051'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '052'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '055'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '060'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '061'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '066'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '070'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '071'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '072'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '074'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '080'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '082'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '083'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '084'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '085'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '086'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '088'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '09x'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '100'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '110'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '111'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '130'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '210'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '222'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '240'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '242'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '243'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '245'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '246'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '247'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '250'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '251'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '254'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '255'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '256'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '257'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '258'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '260'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '263'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '264'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '270'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '300'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '306'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '307'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '310'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '321'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '334'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '335'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '336'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '337'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '338'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '340'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '341'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '342'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '343'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '344'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '345'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '346'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '347'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '348'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '351'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '352'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '353'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '355'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '357'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '361'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '362'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '363'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '365'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '366'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '370'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '377'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '380'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '381'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '382'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '383'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '384'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '385'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '386'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '387'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '388'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '490'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '500'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '501'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '502'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '504'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '505'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '506'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '507'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '508'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '510'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '511'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '513'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '514'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '515'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '516'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '518'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '520'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '521'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '522'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '524'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '525'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '526'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '530'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '532'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '533'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '534'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '535'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '536'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '538'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '540'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '541'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '542'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '544'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '545'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '546'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '547'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '550'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '552'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '555'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '556'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '561'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '562'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '563'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '565'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '567'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '580'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '581'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '583'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '584'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '585'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '586'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '588'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '59x'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '600'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '610'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '611'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '630'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '647'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '648'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '650'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '651'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '653'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '654'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '655'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '656'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '657'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '658'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '662'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '688'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '69x'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '700'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '710'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '711'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '720'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '730'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '740'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '751'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '752'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '753'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '754'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '758'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '760'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '762'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '765'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '767'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '770'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '772'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '773'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '774'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '775'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '776'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '777'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '780'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '785'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '786'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '787'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '788'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '800'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '810'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '811'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '830'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '850'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '852'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '856'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '857'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '880'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '881'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '882'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '883'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '884'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '885'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '886'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '887'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - END $$; - -COMMIT; diff --git a/Open-ILS/src/sql/Pg/LP2073561.fix.coded.value.map-post_3.13_upgrade.sql b/Open-ILS/src/sql/Pg/LP2073561.fix.coded.value.map-post_3.13_upgrade.sql new file mode 100644 index 0000000000..9aa737afc2 --- /dev/null +++ b/Open-ILS/src/sql/Pg/LP2073561.fix.coded.value.map-post_3.13_upgrade.sql @@ -0,0 +1,6286 @@ +BEGIN; + +SELECT evergreen.upgrade_deps_block_check('1416_fix', :eg_version); + +TRUNCATE config.coded_value_map CASCADE; + +-- 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')), +(1736,'icon_format','preloadedaudio', + oils_i18n_gettext(1736, 'Preloaded Audio', 'ccvm', 'value'), + oils_i18n_gettext(1736, 'Preloaded Audio', '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')), +(1737,'search_format','preloadedaudio', + oils_i18n_gettext(1737, 'Preloaded Audio', 'ccvm', 'value'), + oils_i18n_gettext(1737, 'Preloaded Audio', 'ccvm', 'search_label')), +(1738,'search_format','video', + oils_i18n_gettext(1738, 'All Videos', 'ccvm', 'value'), + oils_i18n_gettext(1738, 'All Videos', '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('1353', '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('1354', 'Discography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1355, 'accm1', 'b', oils_i18n_gettext('1355', 'Bibliography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1356, 'accm1', 'c', oils_i18n_gettext('1356', 'Thematic index', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1357, 'accm1', 'd', oils_i18n_gettext('1357', '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('1358', '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('1359', '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('1360', '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('1361', '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('1362', 'Historical information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1363, 'accm1', 'k', oils_i18n_gettext('1363', 'Ethnological information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1364, 'accm1', 'r', oils_i18n_gettext('1364', 'Instructional materials', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1365, 'accm1', 's', oils_i18n_gettext('1365', 'Music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1366, 'accm1', 'z', oils_i18n_gettext('1366', '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('1367', 'Discography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1368, 'accm2', 'b', oils_i18n_gettext('1368', 'Bibliography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1369, 'accm2', 'c', oils_i18n_gettext('1369', 'Thematic index', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1370, 'accm2', 'd', oils_i18n_gettext('1370', '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('1371', '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('1372', '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('1373', '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('1374', '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('1375', 'Historical information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1376, 'accm2', 'k', oils_i18n_gettext('1376', 'Ethnological information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1377, 'accm2', 'r', oils_i18n_gettext('1377', 'Instructional materials', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1378, 'accm2', 's', oils_i18n_gettext('1378', 'Music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1379, 'accm2', 'z', oils_i18n_gettext('1379', '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('1380', 'Discography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1381, 'accm3', 'b', oils_i18n_gettext('1381', 'Bibliography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1382, 'accm3', 'c', oils_i18n_gettext('1382', 'Thematic index', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1383, 'accm3', 'd', oils_i18n_gettext('1383', '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('1384', '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('1385', '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('1386', '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('1387', '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('1388', 'Historical information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1389, 'accm3', 'k', oils_i18n_gettext('1389', 'Ethnological information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1390, 'accm3', 'r', oils_i18n_gettext('1390', 'Instructional materials', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1391, 'accm3', 's', oils_i18n_gettext('1391', 'Music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1392, 'accm3', 'z', oils_i18n_gettext('1392', '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('1393', 'Discography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1394, 'accm4', 'b', oils_i18n_gettext('1394', 'Bibliography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1395, 'accm4', 'c', oils_i18n_gettext('1395', 'Thematic index', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1396, 'accm4', 'd', oils_i18n_gettext('1396', '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('1397', '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('1398', '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('1399', '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('1400', '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('1401', 'Historical information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1402, 'accm4', 'k', oils_i18n_gettext('1402', 'Ethnological information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1403, 'accm4', 'r', oils_i18n_gettext('1403', 'Instructional materials', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1404, 'accm4', 's', oils_i18n_gettext('1404', 'Music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1405, 'accm4', 'z', oils_i18n_gettext('1405', '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('1406', 'Discography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1407, 'accm5', 'b', oils_i18n_gettext('1407', 'Bibliography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1408, 'accm5', 'c', oils_i18n_gettext('1408', 'Thematic index', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1409, 'accm5', 'd', oils_i18n_gettext('1409', '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('1410', '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('1411', '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('1412', '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('1413', '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('1414', 'Historical information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1415, 'accm5', 'k', oils_i18n_gettext('1415', 'Ethnological information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1416, 'accm5', 'r', oils_i18n_gettext('1416', 'Instructional materials', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1417, 'accm5', 's', oils_i18n_gettext('1417', 'Music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1418, 'accm5', 'z', oils_i18n_gettext('1418', '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('1419', 'Discography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1420, 'accm6', 'b', oils_i18n_gettext('1420', 'Bibliography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1421, 'accm6', 'c', oils_i18n_gettext('1421', 'Thematic index', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1422, 'accm6', 'd', oils_i18n_gettext('1422', '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('1423', '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('1424', '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('1425', '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('1426', '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('1427', 'Historical information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1428, 'accm6', 'k', oils_i18n_gettext('1428', 'Ethnological information', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1429, 'accm6', 'r', oils_i18n_gettext('1429', 'Instructional materials', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1430, 'accm6', 's', oils_i18n_gettext('1430', 'Music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1431, 'accm6', 'z', oils_i18n_gettext('1431', 'Other accompanying matter', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1432, 'cont1', ' ', oils_i18n_gettext('1432', 'Not specified', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1433, 'cont1', 'a', oils_i18n_gettext('1433', 'Abstracts/summaries', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1434, 'cont1', 'b', oils_i18n_gettext('1434', 'Bibliographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1435, 'cont1', 'c', oils_i18n_gettext('1435', 'Catalogs', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1436, 'cont1', 'd', oils_i18n_gettext('1436', 'Dictionaries', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1437, 'cont1', 'e', oils_i18n_gettext('1437', 'Encyclopedias', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1438, 'cont1', 'f', oils_i18n_gettext('1438', 'Handbooks', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1439, 'cont1', 'g', oils_i18n_gettext('1439', 'Legal articles', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1440, 'cont1', 'h', oils_i18n_gettext('1440', 'Biography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1441, 'cont1', 'i', oils_i18n_gettext('1441', 'Indexes', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1442, 'cont1', 'j', oils_i18n_gettext('1442', 'Patent document', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1443, 'cont1', 'k', oils_i18n_gettext('1443', 'Discographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1444, 'cont1', 'l', oils_i18n_gettext('1444', 'Legislation', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1445, 'cont1', 'm', oils_i18n_gettext('1445', 'Theses', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1446, 'cont1', 'n', oils_i18n_gettext('1446', '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('1447', 'Reviews', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1448, 'cont1', 'p', oils_i18n_gettext('1448', 'Programmed texts', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1449, 'cont1', 'q', oils_i18n_gettext('1449', 'Filmographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1450, 'cont1', 'r', oils_i18n_gettext('1450', 'Directories', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1451, 'cont1', 's', oils_i18n_gettext('1451', 'Statistics', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1452, 'cont1', 't', oils_i18n_gettext('1452', 'Technical reports', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1453, 'cont1', 'u', oils_i18n_gettext('1453', 'Standards/specifications', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1454, 'cont1', 'v', oils_i18n_gettext('1454', '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('1455', '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('1456', 'Other reports', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1457, 'cont1', 'y', oils_i18n_gettext('1457', 'Yearbooks', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1458, 'cont1', 'z', oils_i18n_gettext('1458', 'Treaties', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1459, 'cont1', '2', oils_i18n_gettext('1459', 'Offprints', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1460, 'cont1', '5', oils_i18n_gettext('1460', 'Calendars', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1461, 'cont1', '6', oils_i18n_gettext('1461', '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('1462', 'Abstracts/summaries', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1463, 'cont2', 'b', oils_i18n_gettext('1463', 'Bibliographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1464, 'cont2', 'c', oils_i18n_gettext('1464', 'Catalogs', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1465, 'cont2', 'd', oils_i18n_gettext('1465', 'Dictionaries', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1466, 'cont2', 'e', oils_i18n_gettext('1466', 'Encyclopedias', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1467, 'cont2', 'f', oils_i18n_gettext('1467', 'Handbooks', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1468, 'cont2', 'g', oils_i18n_gettext('1468', 'Legal articles', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1469, 'cont2', 'h', oils_i18n_gettext('1469', 'Biography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1470, 'cont2', 'i', oils_i18n_gettext('1470', 'Indexes', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1471, 'cont2', 'j', oils_i18n_gettext('1471', 'Patent document', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1472, 'cont2', 'k', oils_i18n_gettext('1472', 'Discographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1473, 'cont2', 'l', oils_i18n_gettext('1473', 'Legislation', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1474, 'cont2', 'm', oils_i18n_gettext('1474', 'Theses', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1475, 'cont2', 'n', oils_i18n_gettext('1475', '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('1476', 'Reviews', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1477, 'cont2', 'p', oils_i18n_gettext('1477', 'Programmed texts', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1478, 'cont2', 'q', oils_i18n_gettext('1478', 'Filmographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1479, 'cont2', 'r', oils_i18n_gettext('1479', 'Directories', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1480, 'cont2', 's', oils_i18n_gettext('1480', 'Statistics', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1481, 'cont2', 't', oils_i18n_gettext('1481', 'Technical reports', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1482, 'cont2', 'u', oils_i18n_gettext('1482', 'Standards/specifications', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1483, 'cont2', 'v', oils_i18n_gettext('1483', '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('1484', '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('1485', 'Other reports', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1486, 'cont2', 'y', oils_i18n_gettext('1486', 'Yearbooks', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1487, 'cont2', 'z', oils_i18n_gettext('1487', 'Treaties', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1488, 'cont2', '2', oils_i18n_gettext('1488', 'Offprints', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1489, 'cont2', '5', oils_i18n_gettext('1489', 'Calendars', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1490, 'cont2', '6', oils_i18n_gettext('1490', '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('1491', 'Abstracts/summaries', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1492, 'cont3', 'b', oils_i18n_gettext('1492', 'Bibliographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1493, 'cont3', 'c', oils_i18n_gettext('1493', 'Catalogs', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1494, 'cont3', 'd', oils_i18n_gettext('1494', 'Dictionaries', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1495, 'cont3', 'e', oils_i18n_gettext('1495', 'Encyclopedias', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1496, 'cont3', 'f', oils_i18n_gettext('1496', 'Handbooks', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1497, 'cont3', 'g', oils_i18n_gettext('1497', 'Legal articles', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1498, 'cont3', 'h', oils_i18n_gettext('1498', 'Biography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1499, 'cont3', 'i', oils_i18n_gettext('1499', 'Indexes', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1500, 'cont3', 'j', oils_i18n_gettext('1500', 'Patent document', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1501, 'cont3', 'k', oils_i18n_gettext('1501', 'Discographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1502, 'cont3', 'l', oils_i18n_gettext('1502', 'Legislation', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1503, 'cont3', 'm', oils_i18n_gettext('1503', 'Theses', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1504, 'cont3', 'n', oils_i18n_gettext('1504', '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('1505', 'Reviews', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1506, 'cont3', 'p', oils_i18n_gettext('1506', 'Programmed texts', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1507, 'cont3', 'q', oils_i18n_gettext('1507', 'Filmographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1508, 'cont3', 'r', oils_i18n_gettext('1508', 'Directories', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1509, 'cont3', 's', oils_i18n_gettext('1509', 'Statistics', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1510, 'cont3', 't', oils_i18n_gettext('1510', 'Technical reports', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1511, 'cont3', 'u', oils_i18n_gettext('1511', 'Standards/specifications', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1512, 'cont3', 'v', oils_i18n_gettext('1512', '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('1513', '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('1514', 'Other reports', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1515, 'cont3', 'y', oils_i18n_gettext('1515', 'Yearbooks', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1516, 'cont3', 'z', oils_i18n_gettext('1516', 'Treaties', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1517, 'cont3', '2', oils_i18n_gettext('1517', 'Offprints', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1518, 'cont3', '5', oils_i18n_gettext('1518', 'Calendars', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1519, 'cont3', '6', oils_i18n_gettext('1519', '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('1520', 'Abstracts/summaries', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1521, 'cont4', 'b', oils_i18n_gettext('1521', 'Bibliographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1522, 'cont4', 'c', oils_i18n_gettext('1522', 'Catalogs', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1523, 'cont4', 'd', oils_i18n_gettext('1523', 'Dictionaries', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1524, 'cont4', 'e', oils_i18n_gettext('1524', 'Encyclopedias', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1525, 'cont4', 'f', oils_i18n_gettext('1525', 'Handbooks', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1526, 'cont4', 'g', oils_i18n_gettext('1526', 'Legal articles', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1527, 'cont4', 'h', oils_i18n_gettext('1527', 'Biography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1528, 'cont4', 'i', oils_i18n_gettext('1528', 'Indexes', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1529, 'cont4', 'j', oils_i18n_gettext('1529', 'Patent document', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1530, 'cont4', 'k', oils_i18n_gettext('1530', 'Discographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1531, 'cont4', 'l', oils_i18n_gettext('1531', 'Legislation', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1532, 'cont4', 'm', oils_i18n_gettext('1532', 'Theses', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1533, 'cont4', 'n', oils_i18n_gettext('1533', '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('1534', 'Reviews', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1535, 'cont4', 'p', oils_i18n_gettext('1535', 'Programmed texts', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1536, 'cont4', 'q', oils_i18n_gettext('1536', 'Filmographies', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1537, 'cont4', 'r', oils_i18n_gettext('1537', 'Directories', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1538, 'cont4', 's', oils_i18n_gettext('1538', 'Statistics', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1539, 'cont4', 't', oils_i18n_gettext('1539', 'Technical reports', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1540, 'cont4', 'u', oils_i18n_gettext('1540', 'Standards/specifications', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1541, 'cont4', 'v', oils_i18n_gettext('1541', '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('1542', '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('1543', 'Other reports', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1544, 'cont4', 'y', oils_i18n_gettext('1544', 'Yearbooks', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1545, 'cont4', 'z', oils_i18n_gettext('1545', 'Treaties', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1546, 'cont4', '2', oils_i18n_gettext('1546', 'Offprints', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1547, 'cont4', '5', oils_i18n_gettext('1547', 'Calendars', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1548, 'cont4', '6', oils_i18n_gettext('1548', 'Comics/graphic novels', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1549, 'ltxt1', ' ', oils_i18n_gettext('1549', '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('1550', 'Autobiography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1551, 'ltxt1', 'b', oils_i18n_gettext('1551', 'Biography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1552, 'ltxt1', 'c', oils_i18n_gettext('1552', 'Conference proceedings', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1553, 'ltxt1', 'd', oils_i18n_gettext('1553', 'Drama', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1554, 'ltxt1', 'e', oils_i18n_gettext('1554', 'Essays', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1555, 'ltxt1', 'f', oils_i18n_gettext('1555', 'Fiction', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1556, 'ltxt1', 'g', oils_i18n_gettext('1556', 'Reporting', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1557, 'ltxt1', 'h', oils_i18n_gettext('1557', 'History', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1558, 'ltxt1', 'i', oils_i18n_gettext('1558', 'Instruction', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1559, 'ltxt1', 'j', oils_i18n_gettext('1559', 'Language instruction', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1560, 'ltxt1', 'k', oils_i18n_gettext('1560', 'Comedy', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1561, 'ltxt1', 'l', oils_i18n_gettext('1561', 'Lectures, speeches', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1562, 'ltxt1', 'm', oils_i18n_gettext('1562', 'Memoirs', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1563, 'ltxt1', 'n', oils_i18n_gettext('1563', 'Not applicable', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1564, 'ltxt1', 'o', oils_i18n_gettext('1564', 'Folktales', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1565, 'ltxt1', 'p', oils_i18n_gettext('1565', 'Poetry', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1566, 'ltxt1', 'r', oils_i18n_gettext('1566', 'Rehearsals', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1567, 'ltxt1', 's', oils_i18n_gettext('1567', 'Sounds', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1568, 'ltxt1', 't', oils_i18n_gettext('1568', 'Interviews', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1569, 'ltxt1', 'z', oils_i18n_gettext('1569', 'Other', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1570, 'ltxt2', 'a', oils_i18n_gettext('1570', 'Autobiography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1571, 'ltxt2', 'b', oils_i18n_gettext('1571', 'Biography', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1572, 'ltxt2', 'c', oils_i18n_gettext('1572', 'Conference proceedings', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1573, 'ltxt2', 'd', oils_i18n_gettext('1573', 'Drama', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1574, 'ltxt2', 'e', oils_i18n_gettext('1574', 'Essays', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1575, 'ltxt2', 'f', oils_i18n_gettext('1575', 'Fiction', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1576, 'ltxt2', 'g', oils_i18n_gettext('1576', 'Reporting', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1577, 'ltxt2', 'h', oils_i18n_gettext('1577', 'History', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1578, 'ltxt2', 'i', oils_i18n_gettext('1578', 'Instruction', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1579, 'ltxt2', 'j', oils_i18n_gettext('1579', 'Language instruction', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1580, 'ltxt2', 'k', oils_i18n_gettext('1580', 'Comedy', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1581, 'ltxt2', 'l', oils_i18n_gettext('1581', 'Lectures, speeches', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1582, 'ltxt2', 'm', oils_i18n_gettext('1582', 'Memoirs', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1583, 'ltxt2', 'n', oils_i18n_gettext('1583', 'Not applicable', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1584, 'ltxt2', 'o', oils_i18n_gettext('1584', 'Folktales', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1585, 'ltxt2', 'p', oils_i18n_gettext('1585', 'Poetry', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1586, 'ltxt2', 'r', oils_i18n_gettext('1586', 'Rehearsals', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1587, 'ltxt2', 's', oils_i18n_gettext('1587', 'Sounds', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1588, 'ltxt2', 't', oils_i18n_gettext('1588', 'Interviews', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1589, 'ltxt2', 'z', oils_i18n_gettext('1589', 'Other', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1590, 'relf1', ' ', oils_i18n_gettext('1590', '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('1591', 'Contours', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1592, 'relf1', 'b', oils_i18n_gettext('1592', 'Shading', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1593, 'relf1', 'c', oils_i18n_gettext('1593', '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('1594', 'Hachures', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1595, 'relf1', 'e', oils_i18n_gettext('1595', 'Bathymetry, soundings', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1596, 'relf1', 'f', oils_i18n_gettext('1596', 'Form lines', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1597, 'relf1', 'g', oils_i18n_gettext('1597', 'Spot heights', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1598, 'relf1', 'i', oils_i18n_gettext('1598', 'Pictorially', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1599, 'relf1', 'j', oils_i18n_gettext('1599', 'Land forms', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1600, 'relf1', 'k', oils_i18n_gettext('1600', 'Bathymetry, isolines', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1601, 'relf1', 'm', oils_i18n_gettext('1601', 'Rock drawings', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1602, 'relf1', 'z', oils_i18n_gettext('1602', 'Other', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1603, 'relf2', 'a', oils_i18n_gettext('1603', 'Contours', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1604, 'relf2', 'b', oils_i18n_gettext('1604', 'Shading', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1605, 'relf2', 'c', oils_i18n_gettext('1605', '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('1606', 'Hachures', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1607, 'relf2', 'e', oils_i18n_gettext('1607', 'Bathymetry, soundings', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1608, 'relf2', 'f', oils_i18n_gettext('1608', 'Form lines', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1609, 'relf2', 'g', oils_i18n_gettext('1609', 'Spot heights', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1610, 'relf2', 'i', oils_i18n_gettext('1610', 'Pictorially', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1611, 'relf2', 'j', oils_i18n_gettext('1611', 'Land forms', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1612, 'relf2', 'k', oils_i18n_gettext('1612', 'Bathymetry, isolines', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1613, 'relf2', 'm', oils_i18n_gettext('1613', 'Rock drawings', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1614, 'relf2', 'z', oils_i18n_gettext('1614', 'Other', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1615, 'relf3', 'a', oils_i18n_gettext('1615', 'Contours', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1616, 'relf3', 'b', oils_i18n_gettext('1616', 'Shading', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1617, 'relf3', 'c', oils_i18n_gettext('1617', '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('1618', 'Hachures', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1619, 'relf3', 'e', oils_i18n_gettext('1619', 'Bathymetry, soundings', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1620, 'relf3', 'f', oils_i18n_gettext('1620', 'Form lines', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1621, 'relf3', 'g', oils_i18n_gettext('1621', 'Spot heights', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1622, 'relf3', 'i', oils_i18n_gettext('1622', 'Pictorially', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1623, 'relf3', 'j', oils_i18n_gettext('1623', 'Land forms', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1624, 'relf3', 'k', oils_i18n_gettext('1624', 'Bathymetry, isolines', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1625, 'relf3', 'm', oils_i18n_gettext('1625', 'Rock drawings', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1626, 'relf3', 'z', oils_i18n_gettext('1626', 'Other', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1627, 'relf4', 'a', oils_i18n_gettext('1627', 'Contours', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1628, 'relf4', 'b', oils_i18n_gettext('1628', 'Shading', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1629, 'relf4', 'c', oils_i18n_gettext('1629', '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('1630', 'Hachures', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1631, 'relf4', 'e', oils_i18n_gettext('1631', 'Bathymetry, soundings', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1632, 'relf4', 'f', oils_i18n_gettext('1632', 'Form lines', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1633, 'relf4', 'g', oils_i18n_gettext('1633', 'Spot heights', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1634, 'relf4', 'i', oils_i18n_gettext('1634', 'Pictorially', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1635, 'relf4', 'j', oils_i18n_gettext('1635', 'Land forms', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1636, 'relf4', 'k', oils_i18n_gettext('1636', 'Bathymetry, isolines', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1637, 'relf4', 'm', oils_i18n_gettext('1637', 'Rock drawings', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1638, 'relf4', 'z', oils_i18n_gettext('1638', 'Other', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1639, 'spfm1', ' ', oils_i18n_gettext('1639', '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('1640', 'Manuscript', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1641, 'spfm1', 'j', oils_i18n_gettext('1641', '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('1642', 'Calendar', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1643, 'spfm1', 'l', oils_i18n_gettext('1643', 'Puzzle', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1644, 'spfm1', 'n', oils_i18n_gettext('1644', 'Game', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1645, 'spfm1', 'o', oils_i18n_gettext('1645', 'Wall map', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1646, 'spfm1', 'p', oils_i18n_gettext('1646', 'Playing cards', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1647, 'spfm1', 'r', oils_i18n_gettext('1647', 'Loose-leaf', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1648, 'spfm1', 'z', oils_i18n_gettext('1648', 'Other', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1649, 'spfm2', 'e', oils_i18n_gettext('1649', 'Manuscript', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1650, 'spfm2', 'j', oils_i18n_gettext('1650', '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('1651', 'Calendar', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1652, 'spfm2', 'l', oils_i18n_gettext('1652', 'Puzzle', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1653, 'spfm2', 'n', oils_i18n_gettext('1653', 'Game', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1654, 'spfm2', 'o', oils_i18n_gettext('1654', 'Wall map', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1655, 'spfm2', 'p', oils_i18n_gettext('1655', 'Playing cards', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1656, 'spfm2', 'r', oils_i18n_gettext('1656', 'Loose-leaf', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1657, 'spfm2', 'z', oils_i18n_gettext('1657', '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('1674', 'No Illustrations', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1675, 'ills1', 'a', oils_i18n_gettext('1675', 'Illustrations', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1676, 'ills1', 'b', oils_i18n_gettext('1676', 'Maps', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1677, 'ills1', 'c', oils_i18n_gettext('1677', 'Portraits', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1678, 'ills1', 'd', oils_i18n_gettext('1678', 'Charts', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1679, 'ills1', 'e', oils_i18n_gettext('1679', 'Plans', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1680, 'ills1', 'f', oils_i18n_gettext('1680', 'Plates', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1681, 'ills1', 'g', oils_i18n_gettext('1681', 'Music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1682, 'ills1', 'h', oils_i18n_gettext('1682', 'Facsimiles', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1683, 'ills1', 'i', oils_i18n_gettext('1683', '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('1684', 'Genealogical tables', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1685, 'ills1', 'k', oils_i18n_gettext('1685', 'Forms', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1686, 'ills1', 'l', oils_i18n_gettext('1686', 'Samples', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1687, 'ills1', 'm', oils_i18n_gettext('1687', '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('1688', 'Photographs', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1689, 'ills1', 'p', oils_i18n_gettext('1689', 'Illuminations', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1690, 'ills2', 'a', oils_i18n_gettext('1690', 'Illustrations', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1691, 'ills2', 'b', oils_i18n_gettext('1691', 'Maps', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1692, 'ills2', 'c', oils_i18n_gettext('1692', 'Portraits', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1693, 'ills2', 'd', oils_i18n_gettext('1693', 'Charts', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1694, 'ills2', 'e', oils_i18n_gettext('1694', 'Plans', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1695, 'ills2', 'f', oils_i18n_gettext('1695', 'Plates', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1696, 'ills2', 'g', oils_i18n_gettext('1696', 'Music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1697, 'ills2', 'h', oils_i18n_gettext('1697', 'Facsimiles', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1698, 'ills2', 'i', oils_i18n_gettext('1698', '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('1699', 'Genealogical tables', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1700, 'ills2', 'k', oils_i18n_gettext('1700', 'Forms', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1701, 'ills2', 'l', oils_i18n_gettext('1701', 'Samples', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1702, 'ills2', 'm', oils_i18n_gettext('1702', '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('1703', 'Photographs', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1704, 'ills2', 'p', oils_i18n_gettext('1704', 'Illuminations', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1705, 'ills3', 'a', oils_i18n_gettext('1705', 'Illustrations', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1706, 'ills3', 'b', oils_i18n_gettext('1706', 'Maps', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1707, 'ills3', 'c', oils_i18n_gettext('1707', 'Portraits', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1708, 'ills3', 'd', oils_i18n_gettext('1708', 'Charts', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1709, 'ills3', 'e', oils_i18n_gettext('1709', 'Plans', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1710, 'ills3', 'f', oils_i18n_gettext('1710', 'Plates', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1711, 'ills3', 'g', oils_i18n_gettext('1711', 'Music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1712, 'ills3', 'h', oils_i18n_gettext('1712', 'Facsimiles', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1713, 'ills3', 'i', oils_i18n_gettext('1713', '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('1714', 'Genealogical tables', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1715, 'ills3', 'k', oils_i18n_gettext('1715', 'Forms', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1716, 'ills3', 'l', oils_i18n_gettext('1716', 'Samples', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1717, 'ills3', 'm', oils_i18n_gettext('1717', '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('1718', 'Photographs', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1719, 'ills3', 'p', oils_i18n_gettext('1719', 'Illuminations', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1720, 'ills4', 'a', oils_i18n_gettext('1720', 'Illustrations', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1721, 'ills4', 'b', oils_i18n_gettext('1721', 'Maps', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1722, 'ills4', 'c', oils_i18n_gettext('1722', 'Portraits', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1723, 'ills4', 'd', oils_i18n_gettext('1723', 'Charts', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1724, 'ills4', 'e', oils_i18n_gettext('1724', 'Plans', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1725, 'ills4', 'f', oils_i18n_gettext('1725', 'Plates', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1726, 'ills4', 'g', oils_i18n_gettext('1726', 'Music', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1727, 'ills4', 'h', oils_i18n_gettext('1727', 'Facsimiles', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1728, 'ills4', 'i', oils_i18n_gettext('1728', '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('1729', 'Genealogical tables', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1730, 'ills4', 'k', oils_i18n_gettext('1730', 'Forms', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1731, 'ills4', 'l', oils_i18n_gettext('1731', 'Samples', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1732, 'ills4', 'm', oils_i18n_gettext('1732', '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('1733', 'Photographs', 'ccvm', 'value'), FALSE); +INSERT INTO config.coded_value_map (id, ctype, code, value, opac_visible) VALUES (1734, 'ills4', 'p', oils_i18n_gettext('1734', 'Illuminations', 'ccvm', 'value'), FALSE); + +INSERT INTO config.coded_value_map (id, ctype, code, value) VALUES +(1750, 'srce', ' ', oils_i18n_gettext('1750', 'National bibliographic agency', 'ccvm', 'value')), +(1751, 'srce', 'c', oils_i18n_gettext('1751', 'Cooperative cataloging program', 'ccvm', 'value')), +(1752, 'srce', 'd', oils_i18n_gettext('1752', 'Other', 'ccvm', 'value')); + +-- 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"}]'); + +--preloaded audio +INSERT INTO config.composite_attr_entry_definition + (coded_value, definition) VALUES +(1736,'{"0":{"_attr":"item_type","_val":"i"},"1":{"_attr":"item_form","_val":"q"}}'); + +--all videos +INSERT INTO config.composite_attr_entry_definition (coded_value, definition) VALUES + (1738, '{"_attr":"item_type","_val":"g"}'); + +-- 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"}]'); + +SELECT SETVAL('config.coded_value_map_id_seq', (SELECT MAX(id) FROM config.coded_value_map)); + + +-- Additional ccvm changes from the 960 seed data + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_010_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_013_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_015_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_016_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_018_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_020_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_022_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_025_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_026_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_027_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_030_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_031_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_032_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_035_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_036_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_037_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_038_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_040_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_042_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_043_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_044_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_045_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_046_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_048_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_051_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_052_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_061_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_066_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_070_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_071_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_074_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_080_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_083_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_084_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_085_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_086_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_088_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_100_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_110_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_111_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_130_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_222_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.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.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.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.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.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.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.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.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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_250_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_254_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_255_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_256_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_257_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_258_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_260_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_263_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_300_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_306_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_307_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_310_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_321_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_336_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_337_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_338_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_340_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_343_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_344_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_345_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_346_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_347_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_351_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_352_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_355_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_357_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_362_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_365_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_366_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_380_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_381_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_382_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_383_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_384_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_490_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_500_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_501_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_502_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_504_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_506_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_507_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_508_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_510_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_511_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_513_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_514_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_515_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_516_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_518_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_520_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_521_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_522_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_524_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_525_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_526_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_530_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_533_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_534_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_535_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_536_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_538_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_540_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_541_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_542_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_544_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_545_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_546_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_547_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_550_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_552_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_555_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_556_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_561_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_562_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_563_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_565_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_567_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_580_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_581_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_583_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_584_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_585_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_586_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_588_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.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.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.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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_648_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_651_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_654_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_656_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_657_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_658_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_662_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.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.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.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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_720_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_751_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_752_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_753_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_754_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_758_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_758_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_800_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_810_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_811_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_841_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_842_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_843_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_844_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_845_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_850_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.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.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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_855_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_876_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_877_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_878_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_882_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_886_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_biblio_887_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_010_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_014_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_016_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_020_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_022_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_024_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_031_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_035_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_040_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_042_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_043_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_045_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_046_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_052_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_055_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_060_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_065_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_066_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_070_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_072_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_073_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_080_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_086_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_087_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_100_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_110_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_111_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_148_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_150_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_151_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_155_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_180_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_181_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_182_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_185_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_260_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_336_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_360_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_370_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_371_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_372_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_373_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_374_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_375_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_376_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_377_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_380_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_381_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_382_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_383_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_384_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_400_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_410_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_411_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_448_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_450_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_451_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_455_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_480_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_481_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_482_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_485_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_500_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_510_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_511_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_548_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_550_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_551_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_555_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_580_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_581_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_582_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_585_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_640_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_641_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_642_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_643_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_644_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_645_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_646_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_663_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_664_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_665_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_666_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_667_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_670_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_675_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_678_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_680_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_681_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_682_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_688_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_730_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_748_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_750_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_751_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_755_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_780_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_781_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_782_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_785_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_authority_788_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_010_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_014_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_016_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_020_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_022_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_027_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_030_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_035_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_040_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_066_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_337_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_338_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_506_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_538_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_541_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_561_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_562_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_563_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_583_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_841_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_842_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_843_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_844_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_845_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_855_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.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.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.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.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.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.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.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.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.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.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.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.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.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.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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_876_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_877_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +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.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_878_ind_1', '#', $$Undefined$$, FALSE, TRUE); + +INSERT INTO config.coded_value_map(ctype, code, value, opac_visible, is_simple) +VALUES ('marc21_serial_878_ind_2', '#', $$Undefined$$, FALSE, TRUE); + +COMMIT; + + +-- carve out a slot of 10k IDs for stock CCVMs +SELECT SETVAL('config.coded_value_map_id_seq'::TEXT, 10000); + + diff --git a/Open-ILS/src/sql/Pg/upgrade/1416.data.updated_marc_tag_tables.sql b/Open-ILS/src/sql/Pg/upgrade/1416.data.updated_marc_tag_tables.sql index 497e2f5a9a..d91c0b6007 100644 --- a/Open-ILS/src/sql/Pg/upgrade/1416.data.updated_marc_tag_tables.sql +++ b/Open-ILS/src/sql/Pg/upgrade/1416.data.updated_marc_tag_tables.sql @@ -1,29909 +1,8 @@ BEGIN; -SELECT evergreen.upgrade_deps_block_check('1416', :eg_version); +-- This upgrade script is now disabled +-- See LP2073561 +-- SELECT evergreen.upgrade_deps_block_check('1416', :eg_version); -\set ON_ERROR_STOP on - -DO $$ -BEGIN - -- Check if the constraint already exists - IF NOT EXISTS ( - SELECT 1 - FROM pg_constraint - WHERE conname = 'ctype_code_unique' - AND conrelid = 'config.coded_value_map'::regclass - ) - THEN - -- Add the constraint if it doesn't exist - ALTER TABLE config.coded_value_map - ADD CONSTRAINT ctype_code_unique UNIQUE (ctype, code); - END IF; -END -$$; - -INSERT INTO config.record_attr_definition (name, label, multi, filter, sorter, composite, fixed_field) - SELECT 'FMat', 'Form of Material', 't', 't', 'f', 'f', 'FMat' - WHERE NOT EXISTS (SELECT 1 FROM config.record_attr_definition WHERE name = 'FMat'); - -INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type, start_pos, length) -SELECT v.fixed_field, v.tag, v.rec_type, v.start_pos, v.length -FROM (VALUES - ('FMat', '006', 'BKS', 0, 1), - ('FMat', '006', 'COM', 0, 1), - ('FMat', '006', 'MAP', 0, 1), - ('FMat', '006', 'MIX', 0, 1), - ('FMat', '006', 'REC', 0, 1), - ('FMat', '006', 'SCO', 0, 1), - ('FMat', '006', 'SER', 0, 1), - ('FMat', '006', 'VIS', 0, 1) -) AS v(fixed_field, tag, rec_type, start_pos, length) -WHERE -FALSE AND -- skipping the 006 for now -NOT EXISTS ( - SELECT 1 FROM config.marc21_ff_pos_map - WHERE - fixed_field = v.fixed_field AND - tag = v.tag AND - rec_type = v.rec_type AND - start_pos = v.start_pos -); - -CREATE OR REPLACE FUNCTION evergreen.insert_update_coded_value_map(_tag TEXT, _start_pos INT, _code TEXT, _value TEXT, _description TEXT, _rec_type TEXT) -RETURNS VOID AS $$ -DECLARE - _ctype TEXT; - _processed_value TEXT; - _grouped_rec_type TEXT[]; -BEGIN - -- Mapping _rec_type to groups - CASE _rec_type - WHEN 'biblio' THEN - _grouped_rec_type := ARRAY['COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER']; - WHEN 'authority' THEN - _grouped_rec_type := ARRAY['AUT']; - ELSE - _grouped_rec_type := ARRAY[_rec_type]; -- Default to itself if not mapped - END CASE; - - SELECT name INTO _ctype - FROM config.record_attr_definition - WHERE fixed_field = ( - SELECT fixed_field - FROM config.marc21_ff_pos_map - WHERE tag = _tag AND start_pos = _start_pos - AND rec_type = ANY(_grouped_rec_type) - LIMIT 1 - ); - - IF _ctype IS NULL THEN - RAISE INFO 'Subquery returned NULL for tag %, start_pos %', _tag, _start_pos; - ELSE - _processed_value := _value; - IF _value IN ('#', '|') THEN - _processed_value := ' '; - RAISE INFO 'Replacing value "%" with a space for tag %, start_pos %, code %', _value, _tag, _start_pos, _code; - END IF; - - INSERT INTO config.coded_value_map (ctype, code, value, description) - VALUES (_ctype, _code, _processed_value, _description) - ON CONFLICT (ctype, code) - DO UPDATE SET - value = EXCLUDED.value, - description = EXCLUDED.description; - END IF; -END; -$$ LANGUAGE plpgsql; - -CREATE OR REPLACE FUNCTION evergreen.simple_insert_update_coded_value_map(_ctype TEXT, _code TEXT, _value TEXT, _description TEXT) -RETURNS VOID AS $$ -BEGIN - INSERT INTO config.coded_value_map (ctype, code, value, description) - VALUES (_ctype, _code, _value, _description) - ON CONFLICT (ctype, code) - DO UPDATE SET - value = EXCLUDED.value, - description = EXCLUDED.description; -END; -$$ LANGUAGE plpgsql; --- category: authority tag: 001 file: www.loc.gov/marc/authority/concise/ad001.html --- category: authority tag: 003 file: www.loc.gov/marc/authority/concise/ad003.html --- category: authority tag: 005 file: www.loc.gov/marc/authority/concise/ad005.html --- category: authority tag: 008 file: www.loc.gov/marc/authority/concise/ad008.html - - UPDATE config.record_attr_definition - SET description = 'Date entered on file' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 0 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Direct or indirect geographic subdivision' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 6 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Romanization scheme' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 7 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Language of catalog' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 8 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Kind of record' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 9 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Descriptive cataloging rules' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 10 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Subject heading system/thesaurus' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 11 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of series' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 12 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Numbered or unnumbered series' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 13 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Heading use-main or added entry' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 14 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Heading use-subject added entry' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 15 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Heading use-series added entry' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 16 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of subject subdivision' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 17 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined character positions' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of government agency' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 28 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Reference evaluation' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 29 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined character position' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 30 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Record update in process' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 31 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undifferentiated personal name' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 32 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Level of establishment' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 33 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined character positions' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 34 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Modified record' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 38 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Cataloging source' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 39 AND rec_type = 'AUT' LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 6, '#', 'Not subdivided geographically', '1XX heading is not to be subdivided geographically when used in a subject - access entry in a bibliographic record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'd', 'Subdivided geographically-direct', 'Heading is followed immediately by the name of the specific place to which the - heading is limited without the interposition of a subdivision for the name of - the larger geographic entity. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'i', 'Subdivided geographically-indirect', 'Name of the larger geographic entity is interposed between the heading and the - subdivision for the specific place to which the heading is limited. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'n', 'Not applicable', 'Heading is unestablished or is an established heading that is not appropriate - for use as a subject added entry in bibliographic records (008/15, code b). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 6, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'a', 'a - International standard', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'b', 'b - National standard', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'c', 'c - National library association standard', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'd', 'd - National library or bibliographic agency standard', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'e', 'e - Local standard', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'f', 'f - Standard of unknown origin', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'g', 'g - Conventional romanization or conventional form of name in language of', 'cataloging agency', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'n', 'Not applicable', '1XX heading is not romanized.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 8, '#', '# - No information provided', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 8, 'b', 'b - English and French', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 8, 'e', 'e - English only', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 8, 'f', 'f - French only', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 8, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'a', 'Established heading', '100-15X field contains an established name, name/title, - uniform title, topical term, or one of these used in an extended subject - heading. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'b', 'Untraced reference', '100-15X field contains an unestablished heading that is not - authorized for use as the element in an access point in a bibliographic record. - The heading is not traced as a 4XX See From Tracing field in any other - authority record. The reference record contains a Complex See Reference (260) - or a General Explanatory Reference (666) field to guide the user to established - heading(s). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'c', 'Traced reference', '100-15X field contains an unestablished heading that is traced - as a 4XX field in the record for each established heading referred to in fields - 260 or 664. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'd', 'Subdivision', '18X field contains an unestablished heading that may be used - as a subject subdivision with an established heading. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'e', 'Node label', '15X field contains an unestablished term that is the - authorized form that is used in the systematic section of a thesaurus to - indicate the logical basis on which a category has been divided. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'f', 'Established heading and subdivision', '15X field contains an established heading that may be used as - a main term and as a subject subdivision. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'g', 'Reference and subdivision', '15X field contains an unestablished heading that may be used - as a reference term and as a subject subdivision. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, 'a', 'Earlier rules', 'Formulation of the 1XX heading conforms to descriptive cataloging rules used - prior to the 1967 publication of Anglo-American Cataloging Rules (AACR - 1). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, 'b', 'AACR 1', 'Formulation of the 1XX heading conforms to the 1967 Anglo-American - Cataloging Rules (AACR 1). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, 'c', 'AACR 2', 'Formulation of the 1XX heading conforms to the second edition (1978) or later - editions of Anglo-American Cataloguing Rules (AACR 2) or published - cataloging manuals based on the AACR 2. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, 'd', 'AACR 2 compatible heading', 'Formulation of the 1XX heading does not follow but is considered compatible - with AACR 2. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, 'z', 'Other', 'Formulation of the 1XX heading conforms to a set of descriptive cataloging - conventions other than what is specified by one of the other defined codes. - - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, 'n', 'Not applicable', '1XX heading is not a name, name/title, or uniform title formulated according to - descriptive cataloging rules and is not appropriate for use as a main or added - entry in bibliographic records. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'a', 'Library of Congress Subject Headings', '1XX heading conforms to Library of Congress Subject Headings - (LCSH). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'b', 'b - Library of Congress Children''s and Young Adults'' Subject Headings', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'c', 'Medical Subject Headings', '1XX heading conforms to Medical Subject Headings (MeSH). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'd', 'National Agricultural Library subject authority file', '1XX heading conforms to the NAL subject authority file.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'k', 'Canadian Subject Headings', '1XX heading conforms to Canadian Subject Headings. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'n', 'Not applicable', '1XX heading does not conform to subject heading system/thesaurus conventions - and is not appropriate for use as a subject added entry in bibliographic - records. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'r', 'Art and Architecture Thesaurus', '1XX heading conforms to Art and Architecture Thesaurus. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 's', 'Sears List of Subject Heading', '1XX heading conforms to Sears List of Subject Headings. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'v', 'Répertoire de vedettes-matière', '1XX heading conforms to Répertoire de vedettes-matière. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'z', 'Other', '1XX heading conforms to subject heading system/thesaurus conventions other than - that specified by one of the other defined codes. A MARC code for the - conventions used to formulate the heading may be contained in subfield - $f (Subject heading/thesaurus conventions) in field 040 (Cataloging - Source). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 12, 'a', 'Monographic series', '1XX field contains an established heading for a collective title that applies - to a group of separate publications and/or subseries, each of which also has - its own title. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 12, 'b', 'Multipart item', '1XX field contains an established heading for a collective title that applies - to a multipart monographic publication. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 12, 'c', 'Series-like phrase', '1XX field contains a phrase that is not being used as a series in a - bibliographic record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 12, 'n', 'Not applicable', '1XX field does not represent a series or a series-like phrase and is not - appropriate for use as a series added entry in bibliographic records. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 12, 'z', 'Other', '1XX field contains a heading for a publication that does not fit any of the - other defined codes but for which series-type treatment is required. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 12, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 13, 'a', 'a - Numbered', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 13, 'b', 'b - Unnumbered', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 13, 'c', 'c - Numbering varies', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 13, 'n', 'Not applicable', '1XX heading is not a series heading (008/12, code n).', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 13, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 14, 'a', 'Appropriate', '1XX field contains an established name, name/title, or uniform title that - conforms to descriptive cataloging rules. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 14, 'b', 'Not appropriate', '1XX heading in an established heading record does not conform to descriptive - cataloging conventions or the 1XX field contains an unestablished heading in a - reference, subdivision, or node label record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 14, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 15, 'a', 'Appropriate', '1XX field contains an established heading name, name/title, uniform title, - topical term, or extended subject heading that conforms to subject heading - system/thesaurus conventions. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 15, 'b', 'Not appropriate', '1XX heading in an established heading record does not conform to subject - heading system/thesaurus conventions or the 1XX field contains an unestablished - heading in a reference, subdivision, or node label record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 15, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 16, 'a', 'Appropriate', '1XX heading in an established heading record represents one of the types of - series coded in 008/12 (code a, b, c, or z). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 16, 'b', 'Not appropriate', '1XX heading in an established heading record does not represent one of the - types of series coded in 008/12 (code n) or the 1XX field contains an - unestablished heading in a reference, subdivision, or node label record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 16, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, 'a', 'a - Topical', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, 'b', 'b - Form', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, 'c', 'c - Chronological', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, 'd', 'd - Geographic', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, 'e', 'e - Language', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, 'n', 'Not applicable', '1XX heading is not an authorized subject subdivision.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '#', '# - Not a government agency', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'a', 'a - Autonomous or semi-autonomous component', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'c', 'c - Multilocal', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'f', 'f - Federal/national', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'i', 'i - International intergovernmental', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'l', 'l - Local', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'm', 'm - Multistate', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'o', 'o - Government agency-type undetermined', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 's', 's - State, provincial, territorial, dependent, etc.', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'u', 'u - Unknown if heading is government agency', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'z', 'z - Other', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'a', 'a - Tracings are consistent with the heading', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'b', 'b - Tracings are not necessarily consistent with the heading', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'n', 'Not applicable', 'Record contains no 4XX/5XX tracing fields.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 31, 'a', 'a - Record can be used', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 31, 'b', 'Record is being updated', 'Change in the record is being considered and it may not be advisable to use the - 1XX heading in bibliographic records. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 32, 'a', 'Differentiated personal name', 'Personal name in field 100 is a unique name.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 32, 'b', 'Undifferentiated personal name', 'Personal name in field 100 is used by two or more persons.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 32, 'n', 'Not applicable', '1XX heading is not a personal name or the personal name is a family name.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 32, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'a', 'a - Fully established', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'b', 'Memorandum', '100-151 heading is fully established but it has not been used in a - bibliographic record. The authority work was done before the decision was made - to not use the heading in a bibliographic record; however, the information is - retained for probable future use. When the heading is used in a bibliographic - record, code b may be changed to code a or c. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'c', 'Provisional', '100-151 heading cannot be formulated satisfactorily because of inadequate - information. Further investigation should be made when the heading is next used - in a bibliographic record. When the needed information is available, code c may - be changed to code a. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'd', 'Preliminary', '100-151 heading is taken from a bibliographic record because the bibliographic - item is not available at the time the heading is established. When the heading - is used in a bibliographic record created from cataloging with an item in hand, - code d may be changed to code a. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'n', 'Not applicable', '1XX field contains an unestablished heading in a reference, subdivision, - reference and subdivision, or node label record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 38, '#', '# - Not modified', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 's', 'Shortened', 'Some of the data has been omitted because the record would have exceeded the - maximum length allowed by a particular system. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 'x', 'Missing characters', 'Characters that could not be converted into machine-readable form due to - character set limitations are missing from the record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 38, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 39, '#', '# - National bibliographic agency', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 39, 'c', 'Cooperative cataloging program', 'Creator of the authority data is a participant (other than a national - bibliographic agency) in a cooperative cataloging program. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 39, 'd', 'Other', 'Organization that is other than a national bibliographic agency or a - participant in a cooperative cataloging program. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 39, 'u', 'Unknown', 'Creator of the authority data is unknown. This code is used when an - organization transcribes manual authority data from an unknown source. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 39, '|', '| - No attempt to code', '', 'authority'); --- category: authority tag: 010 file: www.loc.gov/marc/authority/concise/ad010.html --- category: authority tag: 014 file: www.loc.gov/marc/authority/concise/ad014.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_014_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_014_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_014_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_014_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '014', 'a', 'Control number of related bibliographic record (NR) MARC code (enclosed in parentheses) of the organization that created the related bibliographic record, followed immediately by the bibliographic record control number. See Appendix G: Organization Code Sources for a listing of sources used in MARC 21 records.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '014', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '014', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 014 file: www.loc.gov/marc/authority/concise/ad014.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_014_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_014_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_014_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_014_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '014', 'a', 'Control number of related bibliographic record (NR) MARC code (enclosed in parentheses) of the organization that created the related bibliographic record, followed immediately by the bibliographic record control number. See Appendix G: Organization Code Sources for a listing of sources used in MARC 21 records.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '014', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '014', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 016 file: www.loc.gov/marc/authority/concise/ad016.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_016_ind_1$ident$, - BTRIM($label$First - National bibliographic agency - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_016_ind_1', '#', 'Library and Archives Canada', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_016_ind_1', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_016_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_016_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', 'a', 'Record control number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', 'z', 'Canceled or invalid record control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', '2', 'Source (NR) MARC code or the name of the organization that identifies the national bibliographic agency that was the source of the record control number. Code from: MARC Code List for Organizations.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 016 file: www.loc.gov/marc/authority/concise/ad016.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_016_ind_1$ident$, - BTRIM($label$First - National bibliographic agency - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_016_ind_1', '#', 'Library and Archives Canada', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_016_ind_1', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_016_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_016_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', 'a', 'Record control number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', 'z', 'Canceled or invalid record control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', '2', 'Source (NR) MARC code or the name of the organization that identifies the national bibliographic agency that was the source of the record control number. Code from: MARC Code List for Organizations.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 031 file: www.loc.gov/marc/authority/concise/ad031.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_031_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_031_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_031_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_031_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'b', 'Number of movement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'c', 'Number of excerpt (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'd', 'Caption or heading (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'e', 'Role (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'g', 'Clef (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'm', 'Voice/instrument (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'n', 'Key signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'o', 'Time signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'p', 'Musical notation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'q', 'General note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'r', 'Key or mode (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 's', 'Coded validity note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 't', 'Text incipit (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'y', 'Link text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', '2', 'System code (NR) MARC code that identifies the encoding system used to transcribe the musical notation in subfield $p (Musical notation). Use of subfield $2 is mandatory if subfield $p is present. Code from: Musical Incipit Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 031 file: www.loc.gov/marc/authority/concise/ad031.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_031_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_031_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_031_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_031_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'b', 'Number of movement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'c', 'Number of excerpt (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'd', 'Caption or heading (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'e', 'Role (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'g', 'Clef (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'm', 'Voice/instrument (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'n', 'Key signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'o', 'Time signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'p', 'Musical notation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'q', 'General note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'r', 'Key or mode (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 's', 'Coded validity note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 't', 'Text incipit (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'y', 'Link text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', '2', 'System code (NR) MARC code that identifies the encoding system used to transcribe the musical notation in subfield $p (Musical notation). Use of subfield $2 is mandatory if subfield $p is present. Code from: Musical Incipit Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 035 file: www.loc.gov/marc/authority/concise/ad035.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_035_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_035_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_035_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_035_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', 'a', 'System control number (NR) MARC code (enclosed in parentheses) of the organization originating the system control number, followed immediately by the number. See Appendix G: Organization Code Sources.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', 'z', 'Canceled/invalid system control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 035 file: www.loc.gov/marc/authority/concise/ad035.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_035_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_035_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_035_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_035_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', 'a', 'System control number (NR) MARC code (enclosed in parentheses) of the organization originating the system control number, followed immediately by the number. See Appendix G: Organization Code Sources.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', 'z', 'Canceled/invalid system control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 042 file: www.loc.gov/marc/authority/concise/ad042.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_042_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_042_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_042_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_042_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '042', 'a', 'Authentication code (R) If more than one code is applicable, the subfield is repeated. Code from: MARC Authentication Action Code List.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 042 file: www.loc.gov/marc/authority/concise/ad042.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_042_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_042_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_042_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_042_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '042', 'a', 'Authentication code (R) If more than one code is applicable, the subfield is repeated. Code from: MARC Authentication Action Code List.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 045 file: www.loc.gov/marc/authority/concise/ad045.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_045_ind_1$ident$, - BTRIM($label$First - Type of time period in subfield $b or $c - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '#', 'Subfield $b or $c not present', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '0', 'Single date/time', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '1', 'Multiple single dates/times', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '2', 'Range of dates/times', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_045_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', 'a', 'Time period code (R) Four-character alphanumeric code derived from the "Time Period Code Table" for B.C. and C.E. time periods. Table is found in the MARC 21 Format for Authority Data under the description of field 045, subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', 'b', 'Formatted 9999 B.C. through C.E. time period (R) Specific time period formatted as yyyymmddhh, preceded by a code for the era (c for B.C.; d for C.E.).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', 'c', 'Formatted pre-9999 B.C. time period (R) Formatted time period that consists of as many numeric characters as are needed to represent the number of pre-9999 years B.C.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 045 file: www.loc.gov/marc/authority/concise/ad045.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_045_ind_1$ident$, - BTRIM($label$First - Type of time period in subfield $b or $c - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '#', 'Subfield $b or $c not present', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '0', 'Single date/time', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '1', 'Multiple single dates/times', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '2', 'Range of dates/times', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_045_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', 'a', 'Time period code (R) Four-character alphanumeric code derived from the "Time Period Code Table" for B.C. and C.E. time periods. Table is found in the MARC 21 Format for Authority Data under the description of field 045, subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', 'b', 'Formatted 9999 B.C. through C.E. time period (R) Specific time period formatted as yyyymmddhh, preceded by a code for the era (c for B.C.; d for C.E.).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', 'c', 'Formatted pre-9999 B.C. time period (R) Formatted time period that consists of as many numeric characters as are needed to represent the number of pre-9999 years B.C.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 066 file: www.loc.gov/marc/authority/concise/ad066.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_066_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_066_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_066_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_066_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '066', 'a', 'Primary G0 character set (NR) Code is composed of the Intermediate and Final characters of the escape sequence that designates and invokes the default G0 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '066', 'b', 'Primary G1 character set (NR) Code is composed of the Intermediate and Final characters of the escape sequence that designates and invokes the default G1 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '066', 'c', 'Alternate G0 or G1 character set (R) Code is composed of the Intermediate and Final characters of each escape sequence that will be used to designate an alternate graphic character set used in the record.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 066 file: www.loc.gov/marc/authority/concise/ad066.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_066_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_066_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_066_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_066_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '066', 'a', 'Primary G0 character set (NR) Code is composed of the Intermediate and Final characters of the escape sequence that designates and invokes the default G0 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '066', 'b', 'Primary G1 character set (NR) Code is composed of the Intermediate and Final characters of the escape sequence that designates and invokes the default G1 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '066', 'c', 'Alternate G0 or G1 character set (R) Code is composed of the Intermediate and Final characters of each escape sequence that will be used to designate an alternate graphic character set used in the record.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 072 file: www.loc.gov/marc/authority/concise/ad072.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_072_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_072_ind_2$ident$, - BTRIM($label$Second - Code source - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_2', '0', 'NAL subject category code list', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', 'a', 'Subject category code (NR) Code for the broad subject category to which the heading belongs in a hierarchically-arranged thesaurus.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', 'x', 'Subject category code subdivision (R) Level of specificity within the broader category coded in subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', '2', 'Code source (NR) MARC code that identifies the thesaurus used to assign the subject category code when the second indicator position of this field contains value 7. Code from: Subject Category Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 072 file: www.loc.gov/marc/authority/concise/ad072.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_072_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_072_ind_2$ident$, - BTRIM($label$Second - Code source - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_2', '0', 'NAL subject category code list', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', 'a', 'Subject category code (NR) Code for the broad subject category to which the heading belongs in a hierarchically-arranged thesaurus.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', 'x', 'Subject category code subdivision (R) Level of specificity within the broader category coded in subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', '2', 'Code source (NR) MARC code that identifies the thesaurus used to assign the subject category code when the second indicator position of this field contains value 7. Code from: Subject Category Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 073 file: www.loc.gov/marc/authority/concise/ad073.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_073_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_073_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_073_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_073_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', 'a', 'Subdivision usage (R) Category designator code that specifies the category of terms with which the subdivision may be used.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', 'z', 'Code source (NR) MARC code that identifies the thesaurus used to assign the category designator code. Code from: Subject Category Code Source Codes .','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 073 file: www.loc.gov/marc/authority/concise/ad073.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_073_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_073_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_073_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_073_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', 'a', 'Subdivision usage (R) Category designator code that specifies the category of terms with which the subdivision may be used.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', 'z', 'Code source (NR) MARC code that identifies the thesaurus used to assign the category designator code. Code from: Subject Category Code Source Codes .','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 086 file: www.loc.gov/marc/authority/concise/ad086.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_086_ind_1$ident$, - BTRIM($label$First - Number source - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_1', '#', 'Source specified in subfield $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_1', '0', 'Superintendent of Documents Classification System', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_1', '1', 'Government of Canada Publications: Outline of Classification', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_086_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', 'a', 'Call number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', 'd', 'Volumes/dates to which call number applies (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', 'z', 'Canceled/invalid call number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '2', 'Number source (NR) MARC code that identifies the government document classification system or scheme when the first indicator position contains value blank (#). Code from: Classification Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 086 file: www.loc.gov/marc/authority/concise/ad086.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_086_ind_1$ident$, - BTRIM($label$First - Number source - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_1', '#', 'Source specified in subfield $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_1', '0', 'Superintendent of Documents Classification System', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_1', '1', 'Government of Canada Publications: Outline of Classification', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_086_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', 'a', 'Call number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', 'd', 'Volumes/dates to which call number applies (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', 'z', 'Canceled/invalid call number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '2', 'Number source (NR) MARC code that identifies the government document classification system or scheme when the first indicator position contains value blank (#). Code from: Classification Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 09x file: www.loc.gov/marc/authority/concise/ad09x.html --- category: authority tag: 640 file: www.loc.gov/marc/authority/concise/ad640.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_640_ind_1$ident$, - BTRIM($label$First - Note format style - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_640_ind_1', '0', 'Formatted style', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_640_ind_1', '1', 'Unformatted style', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_640_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_640_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', 'a', 'Dates of publication and/or sequential designation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', 'z', 'Source of information (NR) Citation for the source of the information contained in subfield $a. Instruction term: Cf. may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 640 file: www.loc.gov/marc/authority/concise/ad640.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_640_ind_1$ident$, - BTRIM($label$First - Note format style - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_640_ind_1', '0', 'Formatted style', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_640_ind_1', '1', 'Unformatted style', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_640_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_640_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', 'a', 'Dates of publication and/or sequential designation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', 'z', 'Source of information (NR) Citation for the source of the information contained in subfield $a. Instruction term: Cf. may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 641 file: www.loc.gov/marc/authority/concise/ad641.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_641_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_641_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_641_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_641_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', 'a', 'Numbering peculiarities note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', 'z', 'Source of information (NR) Citation for the source of the information contained in subfield $a. Instruction term: Cf. may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 641 file: www.loc.gov/marc/authority/concise/ad641.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_641_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_641_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_641_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_641_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', 'a', 'Numbering peculiarities note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', 'z', 'Source of information (NR) Citation for the source of the information contained in subfield $a. Instruction term: Cf. may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 642 file: www.loc.gov/marc/authority/concise/ad642.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_642_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_642_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_642_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_642_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', 'a', 'Series numbering example (NR) Form of number in series a.e.: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', 'd', 'Volumes/dates to which series numbering example applies (NR) Statement used only when the series numbering example contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', '5', 'Institution/copy to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 642 file: www.loc.gov/marc/authority/concise/ad642.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_642_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_642_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_642_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_642_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', 'a', 'Series numbering example (NR) Form of number in series a.e.: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', 'd', 'Volumes/dates to which series numbering example applies (NR) Statement used only when the series numbering example contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', '5', 'Institution/copy to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 643 file: www.loc.gov/marc/authority/concise/ad643.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_643_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_643_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_643_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_643_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', 'a', 'Place (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', 'b', 'Publisher/issuing body (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', 'd', 'Volumes/dates to which place and publisher/issuing body apply (NR) Used only when the data contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 643 file: www.loc.gov/marc/authority/concise/ad643.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_643_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_643_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_643_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_643_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', 'a', 'Place (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', 'b', 'Publisher/issuing body (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', 'd', 'Volumes/dates to which place and publisher/issuing body apply (NR) Used only when the data contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 644 file: www.loc.gov/marc/authority/concise/ad644.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_644_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_644_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_644_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_644_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', 'a', 'Series analysis practice (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', 'b', 'Exceptions to analysis practice (NR) Statement identifying those items in the series to which the analysis practice code contained in subfield $a does not apply.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', 'd', 'Volumes/dates to which analysis practice applies (NR) Statement that is used only when the data contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', '5', 'Institution/copy to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 644 file: www.loc.gov/marc/authority/concise/ad644.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_644_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_644_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_644_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_644_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', 'a', 'Series analysis practice (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', 'b', 'Exceptions to analysis practice (NR) Statement identifying those items in the series to which the analysis practice code contained in subfield $a does not apply.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', 'd', 'Volumes/dates to which analysis practice applies (NR) Statement that is used only when the data contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', '5', 'Institution/copy to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 645 file: www.loc.gov/marc/authority/concise/ad645.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_645_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_645_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_645_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_645_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', 'a', 'Series tracing practice (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', 'd', 'Volumes/dates to which tracing practice applies (NR) Statement used only when the tracing practice contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', '5', 'Institution/copy to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 645 file: www.loc.gov/marc/authority/concise/ad645.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_645_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_645_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_645_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_645_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', 'a', 'Series tracing practice (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', 'd', 'Volumes/dates to which tracing practice applies (NR) Statement used only when the tracing practice contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', '5', 'Institution/copy to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 646 file: www.loc.gov/marc/authority/concise/ad646.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_646_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_646_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_646_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_646_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', 'a', 'Series classification practice (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', 'd', 'Volumes/dates to which classification practice applies (NR) Statement used only when the classification practice contained in subfield $a does not apply to all items of the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 646 file: www.loc.gov/marc/authority/concise/ad646.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_646_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_646_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_646_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_646_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', 'a', 'Series classification practice (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', 'd', 'Volumes/dates to which classification practice applies (NR) Statement used only when the classification practice contained in subfield $a does not apply to all items of the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 663 file: www.loc.gov/marc/authority/concise/ad663.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_663_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_663_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_663_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_663_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', 'a', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', 'b', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', 't', 'Title referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 663 file: www.loc.gov/marc/authority/concise/ad663.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_663_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_663_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_663_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_663_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', 'a', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', 'b', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', 't', 'Title referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 664 file: www.loc.gov/marc/authority/concise/ad664.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_664_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_664_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_664_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_664_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', 'a', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', 'b', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', 't', 'Title referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 664 file: www.loc.gov/marc/authority/concise/ad664.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_664_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_664_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_664_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_664_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', 'a', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', 'b', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', 't', 'Title referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 665 file: www.loc.gov/marc/authority/concise/ad665.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_665_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_665_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_665_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_665_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '665', 'a', 'History reference (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '665', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '665', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 665 file: www.loc.gov/marc/authority/concise/ad665.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_665_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_665_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_665_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_665_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '665', 'a', 'History reference (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '665', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '665', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 666 file: www.loc.gov/marc/authority/concise/ad666.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_666_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_666_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_666_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_666_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '666', 'a', 'General explanatory reference (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '666', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '666', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 666 file: www.loc.gov/marc/authority/concise/ad666.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_666_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_666_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_666_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_666_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '666', 'a', 'General explanatory reference (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '666', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '666', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 667 file: www.loc.gov/marc/authority/concise/ad667.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_667_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_667_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_667_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_667_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', 'a', 'Nonpublic general note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 667 file: www.loc.gov/marc/authority/concise/ad667.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_667_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_667_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_667_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_667_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', 'a', 'Nonpublic general note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 681 file: www.loc.gov/marc/authority/concise/ad681.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_681_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_681_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_681_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_681_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', 'a', 'Subject heading or subdivision term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', 'i', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 681 file: www.loc.gov/marc/authority/concise/ad681.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_681_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_681_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_681_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_681_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', 'a', 'Subject heading or subdivision term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', 'i', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 682 file: www.loc.gov/marc/authority/concise/ad682.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_682_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_682_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_682_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_682_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', 'a', 'Replacement heading (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', 'i', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', '0', 'Replacement authority record control number (R) System control number of the replacement authority record preceded by the MARC code, enclosed in parentheses, for the agency to which the control number applies. See Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 682 file: www.loc.gov/marc/authority/concise/ad682.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_682_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_682_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_682_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_682_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', 'a', 'Replacement heading (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', 'i', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', '0', 'Replacement authority record control number (R) System control number of the replacement authority record preceded by the MARC code, enclosed in parentheses, for the agency to which the control number applies. See Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 688 file: www.loc.gov/marc/authority/concise/ad688.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_688_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_688_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_688_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_688_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', 'a', 'Application history note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 688 file: www.loc.gov/marc/authority/concise/ad688.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_688_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_688_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_688_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_688_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', 'a', 'Application history note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 880 file: www.loc.gov/marc/authority/concise/ad880.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_880_ind_1$ident$, - BTRIM($label$First - Same as associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_880_ind_2$ident$, - BTRIM($label$Second - Same as associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'a', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'b', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'c', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'd', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'e', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'f', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'g', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'h', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'i', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'j', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'k', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'l', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'm', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'n', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'o', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'p', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'q', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'r', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 's', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 't', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'u', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'v', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'w', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'x', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'y', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'z', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '0', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '1', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '2', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '3', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '4', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '5', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '7', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '8', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '9', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 880 file: www.loc.gov/marc/authority/concise/ad880.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_880_ind_1$ident$, - BTRIM($label$First - Same as associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_880_ind_2$ident$, - BTRIM($label$Second - Same as associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'a', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'b', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'c', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'd', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'e', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'f', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'g', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'h', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'i', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'j', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'k', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'l', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'm', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'n', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'o', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'p', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'q', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'r', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 's', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 't', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'u', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'v', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'w', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'x', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'y', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'z', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '0', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '1', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '2', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '3', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '4', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '5', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '7', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '8', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '9', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 001 file: www.loc.gov/marc/bibliographic/concise/bd001.html --- category: biblio tag: 003 file: www.loc.gov/marc/bibliographic/concise/bd003.html --- category: biblio tag: 005 file: www.loc.gov/marc/bibliographic/concise/bd005.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007f.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007o.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007q.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007r.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007t.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007z.html --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008.html --- category: biblio tag: 010 file: www.loc.gov/marc/bibliographic/concise/bd010.html --- category: biblio tag: 013 file: www.loc.gov/marc/bibliographic/concise/bd013.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_013_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_013_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_013_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_013_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'a', 'Number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'b', 'Country (NR) Code representing the country or jurisdiction associated with the patent document. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'c', 'Type of number (NR) Type of patent document identifier','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'd', 'Date (R) Date a patent or certificate was granted, or the date of acceptance of an application. The date requires 8 numeric characters in the pattern yyyymmdd (4 for the year, 2 for the month, and 2 for the day).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'e', 'Status (R) Text that explains or clarifies the status of the patent document identified by the number in the field.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'f', 'Party to document (R) Information that identifies the country or agency that is party to the document, usually an application for patent or related document. Codes from: MARC Code List for Countries and MARC Code List for Organizations.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 013 file: www.loc.gov/marc/bibliographic/concise/bd013.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_013_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_013_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_013_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_013_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'a', 'Number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'b', 'Country (NR) Code representing the country or jurisdiction associated with the patent document. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'c', 'Type of number (NR) Type of patent document identifier','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'd', 'Date (R) Date a patent or certificate was granted, or the date of acceptance of an application. The date requires 8 numeric characters in the pattern yyyymmdd (4 for the year, 2 for the month, and 2 for the day).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'e', 'Status (R) Text that explains or clarifies the status of the patent document identified by the number in the field.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'f', 'Party to document (R) Information that identifies the country or agency that is party to the document, usually an application for patent or related document. Codes from: MARC Code List for Countries and MARC Code List for Organizations.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 016 file: www.loc.gov/marc/bibliographic/concise/bd016.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_016_ind_1$ident$, - BTRIM($label$First - National bibliographic agency - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_016_ind_1', '#', 'Library and Archives Canada', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_016_ind_1', '7', 'Source specified in subfield $2 - Used when the source of the control number is indicated by a code in subfield - $2. Codes from: MARC Code List for Organizations.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_016_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_016_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', 'a', 'Record control number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', 'z', 'Canceled/invalid control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', '2', 'Source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 016 file: www.loc.gov/marc/bibliographic/concise/bd016.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_016_ind_1$ident$, - BTRIM($label$First - National bibliographic agency - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_016_ind_1', '#', 'Library and Archives Canada', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_016_ind_1', '7', 'Source specified in subfield $2 - Used when the source of the control number is indicated by a code in subfield - $2. Codes from: MARC Code List for Organizations.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_016_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_016_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', 'a', 'Record control number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', 'z', 'Canceled/invalid control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', '2', 'Source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 018 file: www.loc.gov/marc/bibliographic/concise/bd018.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_018_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_018_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_018_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_018_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '018', 'a', 'Copyright article-fee code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '018', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '018', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 018 file: www.loc.gov/marc/bibliographic/concise/bd018.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_018_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_018_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_018_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_018_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '018', 'a', 'Copyright article-fee code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '018', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '018', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 025 file: www.loc.gov/marc/bibliographic/concise/bd025.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_025_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_025_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_025_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_025_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '025', 'a', 'Overseas acquisition number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '025', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 025 file: www.loc.gov/marc/bibliographic/concise/bd025.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_025_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_025_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_025_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_025_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '025', 'a', 'Overseas acquisition number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '025', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 026 file: www.loc.gov/marc/bibliographic/concise/bd026.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_026_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_026_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_026_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_026_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'a', 'First and second groups of characters (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'b', 'Third and fourth groups of characters (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'c', 'Date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'd', 'Number of volume or part (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'e', 'Unparsed fingerprint (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '2', 'Source (NR) MARC code that identifies the guidelines followed to establish the fingerprint. Code from: Fingerprint Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 026 file: www.loc.gov/marc/bibliographic/concise/bd026.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_026_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_026_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_026_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_026_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'a', 'First and second groups of characters (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'b', 'Third and fourth groups of characters (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'c', 'Date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'd', 'Number of volume or part (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'e', 'Unparsed fingerprint (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '2', 'Source (NR) MARC code that identifies the guidelines followed to establish the fingerprint. Code from: Fingerprint Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 030 file: www.loc.gov/marc/bibliographic/concise/bd030.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_030_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_030_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_030_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_030_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', 'a', 'CODEN (NR) Valid CODEN for the title.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', 'z', 'Canceled/invalid CODEN (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 030 file: www.loc.gov/marc/bibliographic/concise/bd030.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_030_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_030_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_030_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_030_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', 'a', 'CODEN (NR) Valid CODEN for the title.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', 'z', 'Canceled/invalid CODEN (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 031 file: www.loc.gov/marc/bibliographic/concise/bd031.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_031_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_031_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_031_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_031_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'a', 'Number of work (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'b', 'Number of movement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'c', 'Number of excerpt (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'd', 'Caption or heading (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'e', 'Role (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'g', 'Clef (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'm', 'Voice/instrument (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'n', 'Key signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'o', 'Time signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'p', 'Musical notation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'q', 'General note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'r', 'Key or mode (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 's', 'Coded validity note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 't', 'Text incipit (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'y', 'Link text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', '2', 'System code (NR) MARC code that identifies the encoding system used to transcribe the musical notation in subfield $p (Musical notation). Use of subfield $2 is mandatory if subfield $p is present. Code from: Musical Incipit Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 031 file: www.loc.gov/marc/bibliographic/concise/bd031.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_031_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_031_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_031_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_031_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'a', 'Number of work (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'b', 'Number of movement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'c', 'Number of excerpt (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'd', 'Caption or heading (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'e', 'Role (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'g', 'Clef (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'm', 'Voice/instrument (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'n', 'Key signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'o', 'Time signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'p', 'Musical notation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'q', 'General note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'r', 'Key or mode (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 's', 'Coded validity note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 't', 'Text incipit (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'y', 'Link text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', '2', 'System code (NR) MARC code that identifies the encoding system used to transcribe the musical notation in subfield $p (Musical notation). Use of subfield $2 is mandatory if subfield $p is present. Code from: Musical Incipit Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 032 file: www.loc.gov/marc/bibliographic/concise/bd032.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_032_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_032_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_032_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_032_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', 'a', 'Postal registration number (NR) Numbers are right justified and each unused position contains a zero. The hyphen that may appear between the third and fourth digits on printed sources is not carried in the MARC record; it may be generated.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', 'b', 'Source agency assigning number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 032 file: www.loc.gov/marc/bibliographic/concise/bd032.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_032_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_032_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_032_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_032_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', 'a', 'Postal registration number (NR) Numbers are right justified and each unused position contains a zero. The hyphen that may appear between the third and fourth digits on printed sources is not carried in the MARC record; it may be generated.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', 'b', 'Source agency assigning number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 035 file: www.loc.gov/marc/bibliographic/concise/bd035.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_035_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_035_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_035_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_035_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', 'a', 'System control number (NR) MARC code (enclosed in parentheses) of the organization originating the system control number, followed immediately by the number. See Appendix I: Organization Code Sources for a listing of sources used in MARC 21 records.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', 'z', 'Canceled/invalid control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 035 file: www.loc.gov/marc/bibliographic/concise/bd035.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_035_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_035_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_035_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_035_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', 'a', 'System control number (NR) MARC code (enclosed in parentheses) of the organization originating the system control number, followed immediately by the number. See Appendix I: Organization Code Sources for a listing of sources used in MARC 21 records.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', 'z', 'Canceled/invalid control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 036 file: www.loc.gov/marc/bibliographic/concise/bd036.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_036_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_036_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_036_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_036_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', 'a', 'Original study number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', 'b', 'Source agency assigning number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 036 file: www.loc.gov/marc/bibliographic/concise/bd036.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_036_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_036_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_036_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_036_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', 'a', 'Original study number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', 'b', 'Source agency assigning number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 038 file: www.loc.gov/marc/bibliographic/concise/bd038.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_038_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_038_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_038_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_038_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '038', 'a', 'Record content licensor (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '038', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '038', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 038 file: www.loc.gov/marc/bibliographic/concise/bd038.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_038_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_038_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_038_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_038_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '038', 'a', 'Record content licensor (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '038', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '038', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 042 file: www.loc.gov/marc/bibliographic/concise/bd042.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_042_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_042_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_042_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_042_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '042', 'a', 'Authentication code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 042 file: www.loc.gov/marc/bibliographic/concise/bd042.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_042_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_042_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_042_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_042_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '042', 'a', 'Authentication code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 044 file: www.loc.gov/marc/bibliographic/concise/bd044.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_044_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_044_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_044_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_044_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', 'a', 'MARC country code (R) Code appearing in 008/15-17 is given as the first subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', 'b', 'Local subentity code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', 'c', 'ISO country code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', '2', 'Source of local subentity code (R) Source from which the local code was assigned. Code from: Country Code and Term Source Codes.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 044 file: www.loc.gov/marc/bibliographic/concise/bd044.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_044_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_044_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_044_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_044_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', 'a', 'MARC country code (R) Code appearing in 008/15-17 is given as the first subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', 'b', 'Local subentity code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', 'c', 'ISO country code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', '2', 'Source of local subentity code (R) Source from which the local code was assigned. Code from: Country Code and Term Source Codes.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 045 file: www.loc.gov/marc/bibliographic/concise/bd045.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_045_ind_1$ident$, - BTRIM($label$First - Type of time period in subfield $b or $c - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '#', 'Subfield $b or $c not present', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '0', 'Single date/time', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '1', 'Multiple single dates/times - Multiple $b and/or $c subfields are present, each - containing a date/time.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '2', 'Range of dates/times - Two $b and/or $c subfields are present and contain a - range of dates/times.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_045_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', 'a', 'Time period code (R) Four-character alphanumeric code derived from the "Time Period Code Table" for B.C. and A.D. time periods. Table is found in MARC 21 Format for Bibliographic Data under the description of field 045.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', 'b', 'Formatted 9999 B.C. through C.E. time period (R) Specific time period recorded in the pattern yyyymmddhh and preceded by a code for the era (c for B.C.; d for C.E.).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', 'c', 'Formatted pre-9999 B.C. time period (R) Formatted time period that consists of as many numeric characters as are needed to represent the number of pre-9999 years B.C.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 045 file: www.loc.gov/marc/bibliographic/concise/bd045.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_045_ind_1$ident$, - BTRIM($label$First - Type of time period in subfield $b or $c - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '#', 'Subfield $b or $c not present', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '0', 'Single date/time', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '1', 'Multiple single dates/times - Multiple $b and/or $c subfields are present, each - containing a date/time.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '2', 'Range of dates/times - Two $b and/or $c subfields are present and contain a - range of dates/times.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_045_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', 'a', 'Time period code (R) Four-character alphanumeric code derived from the "Time Period Code Table" for B.C. and A.D. time periods. Table is found in MARC 21 Format for Bibliographic Data under the description of field 045.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', 'b', 'Formatted 9999 B.C. through C.E. time period (R) Specific time period recorded in the pattern yyyymmddhh and preceded by a code for the era (c for B.C.; d for C.E.).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', 'c', 'Formatted pre-9999 B.C. time period (R) Formatted time period that consists of as many numeric characters as are needed to represent the number of pre-9999 years B.C.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 047 file: www.loc.gov/marc/bibliographic/concise/bd047.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_047_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_047_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_047_ind_2$ident$, - BTRIM($label$Second - Source of code - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_047_ind_2', '#', 'MARC musical composition code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_047_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '047', 'a', 'Form of musical composition code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '047', '2', 'Source of code (NR) A code that identifies the source from which the musical composition code was assigned. Code from: Musical Composition Form Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '047', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 047 file: www.loc.gov/marc/bibliographic/concise/bd047.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_047_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_047_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_047_ind_2$ident$, - BTRIM($label$Second - Source of code - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_047_ind_2', '#', 'MARC musical composition code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_047_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '047', 'a', 'Form of musical composition code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '047', '2', 'Source of code (NR) A code that identifies the source from which the musical composition code was assigned. Code from: Musical Composition Form Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '047', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 048 file: www.loc.gov/marc/bibliographic/concise/bd048.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_048_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_048_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_048_ind_2$ident$, - BTRIM($label$Second - Source of code - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_048_ind_2', '#', 'MARC code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_048_ind_2', '7', 'Source specified in subfield ‡2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', 'a', 'Performer or ensemble (R) Two-character code for a performer or ensemble (from the list below) and, if applicable, a two-digit number specifying the number of parts.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', 'b', 'Soloist (R) Two-character alphabetic code for a soloist (from the list below) and, if applicable, a two-digit number specifying the number of parts.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', '2', 'Source of code (NR) Code from: Musical Instrumentation and Voice Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields. MARC 21 Instruments or Voices Codes','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 048 file: www.loc.gov/marc/bibliographic/concise/bd048.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_048_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_048_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_048_ind_2$ident$, - BTRIM($label$Second - Source of code - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_048_ind_2', '#', 'MARC code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_048_ind_2', '7', 'Source specified in subfield ‡2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', 'a', 'Performer or ensemble (R) Two-character code for a performer or ensemble (from the list below) and, if applicable, a two-digit number specifying the number of parts.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', 'b', 'Soloist (R) Two-character alphabetic code for a soloist (from the list below) and, if applicable, a two-digit number specifying the number of parts.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', '2', 'Source of code (NR) Code from: Musical Instrumentation and Voice Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields. MARC 21 Instruments or Voices Codes','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 051 file: www.loc.gov/marc/bibliographic/concise/bd051.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_051_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_051_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_051_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_051_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', 'b', 'Item number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', 'c', 'Copy information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 051 file: www.loc.gov/marc/bibliographic/concise/bd051.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_051_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_051_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_051_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_051_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', 'b', 'Item number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', 'c', 'Copy information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 061 file: www.loc.gov/marc/bibliographic/concise/bd061.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_061_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_061_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_061_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_061_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', 'b', 'Item number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', 'c', 'Copy information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 061 file: www.loc.gov/marc/bibliographic/concise/bd061.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_061_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_061_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_061_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_061_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', 'b', 'Item number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', 'c', 'Copy information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 066 file: www.loc.gov/marc/bibliographic/concise/bd066.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_066_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_066_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_066_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_066_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '066', 'a', 'Primary G0 character set (NR) Code is the Intermediate and Final characters of the escape sequence that designates and invokes the default G0 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '066', 'b', 'Primary G1 character set (NR) Code is composed of the Intermediate and Final characters of the escape sequence that designates and invokes the default G1 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '066', 'c', 'Alternate G0 or G1 character set (R) Code is the Intermediate and Final characters of each escape sequence that will be used to designate an alternate graphic character set used in the record.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 066 file: www.loc.gov/marc/bibliographic/concise/bd066.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_066_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_066_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_066_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_066_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '066', 'a', 'Primary G0 character set (NR) Code is the Intermediate and Final characters of the escape sequence that designates and invokes the default G0 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '066', 'b', 'Primary G1 character set (NR) Code is composed of the Intermediate and Final characters of the escape sequence that designates and invokes the default G1 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '066', 'c', 'Alternate G0 or G1 character set (R) Code is the Intermediate and Final characters of each escape sequence that will be used to designate an alternate graphic character set used in the record.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 071 file: www.loc.gov/marc/bibliographic/concise/bd071.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_071_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_071_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_071_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_071_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', 'b', 'Item number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', 'c', 'Copy information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 071 file: www.loc.gov/marc/bibliographic/concise/bd071.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_071_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_071_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_071_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_071_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', 'b', 'Item number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', 'c', 'Copy information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 072 file: www.loc.gov/marc/bibliographic/concise/bd072.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_072_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_072_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_072_ind_2$ident$, - BTRIM($label$Second - Code source - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_072_ind_2', '0', 'NAL subject category code list', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_072_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', 'a', 'Subject category code (NR) Code for the broad subject associated with the item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', 'x', 'Subject category code subdivision (R) Level of specificity within the broader category coded in subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', '2', 'Source (NR) MARC code that identifies the thesaurus used to assign the subject category code when the second indicator position contains value 7. Code from: Subject Category Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 072 file: www.loc.gov/marc/bibliographic/concise/bd072.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_072_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_072_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_072_ind_2$ident$, - BTRIM($label$Second - Code source - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_072_ind_2', '0', 'NAL subject category code list', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_072_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', 'a', 'Subject category code (NR) Code for the broad subject associated with the item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', 'x', 'Subject category code subdivision (R) Level of specificity within the broader category coded in subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', '2', 'Source (NR) MARC code that identifies the thesaurus used to assign the subject category code when the second indicator position contains value 7. Code from: Subject Category Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 074 file: www.loc.gov/marc/bibliographic/concise/bd074.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_074_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_074_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_074_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_074_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '074', 'a', 'GPO item number (NR) GPO Item No. : may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '074', 'z', 'Canceled/invalid GPO item number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '074', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 074 file: www.loc.gov/marc/bibliographic/concise/bd074.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_074_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_074_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_074_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_074_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '074', 'a', 'GPO item number (NR) GPO Item No. : may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '074', 'z', 'Canceled/invalid GPO item number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '074', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 09x file: www.loc.gov/marc/bibliographic/concise/bd09x.html --- category: biblio tag: 222 file: www.loc.gov/marc/bibliographic/concise/bd222.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_222_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_222_ind_2$ident$, - BTRIM($label$Second - Nonfiling characters - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', 'a', 'Key title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', 'b', 'Qualifying information (NR) Parenthetical information that that qualifies the title to make it unique.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 222 file: www.loc.gov/marc/bibliographic/concise/bd222.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_222_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_222_ind_2$ident$, - BTRIM($label$Second - Nonfiling characters - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', 'a', 'Key title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', 'b', 'Qualifying information (NR) Parenthetical information that that qualifies the title to make it unique.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 242 file: www.loc.gov/marc/bibliographic/concise/bd242.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_242_ind_1$ident$, - BTRIM($label$First - Title added entry - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_1', '0', 'No added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_1', '1', 'Added entry', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_242_ind_2$ident$, - BTRIM($label$Second - Nonfiling characters - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'a', 'Title (NR) Title proper, exclusive of the designation of number or name of part and any alternative title.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'b', 'Remainder of title (NR) Includes parallel, alternative, and other title information.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'c', 'Statement of responsibility, etc. (NR) Statement of responsibility and/or any remaining title statement data that are not more appropriately contained in one of the other subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'h', 'Medium (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'n', 'Number of part/section of a work (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'p', 'Name of part/section of a work (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'y', 'Language code of translated title (NR) Code from: MARC Code List for Languages.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 242 file: www.loc.gov/marc/bibliographic/concise/bd242.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_242_ind_1$ident$, - BTRIM($label$First - Title added entry - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_1', '0', 'No added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_1', '1', 'Added entry', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_242_ind_2$ident$, - BTRIM($label$Second - Nonfiling characters - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'a', 'Title (NR) Title proper, exclusive of the designation of number or name of part and any alternative title.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'b', 'Remainder of title (NR) Includes parallel, alternative, and other title information.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'c', 'Statement of responsibility, etc. (NR) Statement of responsibility and/or any remaining title statement data that are not more appropriately contained in one of the other subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'h', 'Medium (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'n', 'Number of part/section of a work (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'p', 'Name of part/section of a work (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'y', 'Language code of translated title (NR) Code from: MARC Code List for Languages.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 254 file: www.loc.gov/marc/bibliographic/concise/bd254.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_254_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_254_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_254_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_254_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '254', 'a', 'Musical presentation statement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '254', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '254', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 254 file: www.loc.gov/marc/bibliographic/concise/bd254.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_254_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_254_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_254_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_254_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '254', 'a', 'Musical presentation statement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '254', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '254', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 258 file: www.loc.gov/marc/bibliographic/concise/bd258.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_258_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_258_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_258_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_258_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', 'a', 'Issuing jurisdiction (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', 'b', 'Denomination (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 258 file: www.loc.gov/marc/bibliographic/concise/bd258.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_258_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_258_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_258_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_258_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', 'a', 'Issuing jurisdiction (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', 'b', 'Denomination (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 263 file: www.loc.gov/marc/bibliographic/concise/bd263.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_263_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_263_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_263_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_263_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '263', 'a', 'Projected publication date (NR) Six-digit date recorded in the pattern yyyymm (4 digits for the year; 2 digits for the month). A hyphen (-) is used for an unknown portion of the date.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '263', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '263', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 263 file: www.loc.gov/marc/bibliographic/concise/bd263.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_263_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_263_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_263_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_263_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '263', 'a', 'Projected publication date (NR) Six-digit date recorded in the pattern yyyymm (4 digits for the year; 2 digits for the month). A hyphen (-) is used for an unknown portion of the date.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '263', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '263', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 306 file: www.loc.gov/marc/bibliographic/concise/bd306.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_306_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_306_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_306_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_306_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '306', 'a', 'Playing time (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '306', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '306', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 306 file: www.loc.gov/marc/bibliographic/concise/bd306.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_306_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_306_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_306_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_306_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '306', 'a', 'Playing time (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '306', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '306', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 307 file: www.loc.gov/marc/bibliographic/concise/bd307.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_307_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_307_ind_1', '#', 'Hours', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_307_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_307_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_307_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', 'a', 'Hours (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', 'b', 'Additional information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 307 file: www.loc.gov/marc/bibliographic/concise/bd307.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_307_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_307_ind_1', '#', 'Hours', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_307_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_307_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_307_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', 'a', 'Hours (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', 'b', 'Additional information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 342 file: www.loc.gov/marc/bibliographic/concise/bd342.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_342_ind_1$ident$, - BTRIM($label$First - Geospatial reference dimension - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_1', '0', 'Horizontal coordinate system', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_1', '1', 'Vertical coordinate system', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_342_ind_2$ident$, - BTRIM($label$Second - Geospatial reference method - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '0', 'Geographic', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '1', 'Map projection', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '2', 'Grid coordinate system', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '3', 'Local planar', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '4', 'Local', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '5', 'Geodetic model', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '6', 'Altitude', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '7', 'Method specified in $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '8', 'Depth', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'a', 'Name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'b', 'Coordinate units or distance units (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'c', 'Latitude resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'd', 'Longitude resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'e', 'Standard parallel or oblique line latitude (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'f', 'Oblique line longitude (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'g', 'Longitude of central meridian or projection center (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'h', 'Latitude of projection center or projection origin (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'i', 'False easting (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'j', 'False northing (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'k', 'Scale factor (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'l', 'Height of perspective point above surface (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'm', 'Azimuthal angle (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'n', 'Azimuth measure point longitude or straight vertical longitude from pole (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'o', 'Landsat number and path number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'p', 'Zone identifier (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'q', 'Ellipsoid name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'r', 'Semi-major axis (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 's', 'Denominator of flattening ratio (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 't', 'Vertical resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'u', 'Vertical encoding method (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'v', 'Local planar, local, or other projection or grid description (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'w', 'Local planar or local georeference information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', '2', 'Reference method used (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 342 file: www.loc.gov/marc/bibliographic/concise/bd342.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_342_ind_1$ident$, - BTRIM($label$First - Geospatial reference dimension - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_1', '0', 'Horizontal coordinate system', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_1', '1', 'Vertical coordinate system', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_342_ind_2$ident$, - BTRIM($label$Second - Geospatial reference method - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '0', 'Geographic', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '1', 'Map projection', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '2', 'Grid coordinate system', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '3', 'Local planar', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '4', 'Local', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '5', 'Geodetic model', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '6', 'Altitude', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '7', 'Method specified in $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '8', 'Depth', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'a', 'Name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'b', 'Coordinate units or distance units (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'c', 'Latitude resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'd', 'Longitude resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'e', 'Standard parallel or oblique line latitude (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'f', 'Oblique line longitude (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'g', 'Longitude of central meridian or projection center (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'h', 'Latitude of projection center or projection origin (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'i', 'False easting (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'j', 'False northing (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'k', 'Scale factor (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'l', 'Height of perspective point above surface (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'm', 'Azimuthal angle (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'n', 'Azimuth measure point longitude or straight vertical longitude from pole (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'o', 'Landsat number and path number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'p', 'Zone identifier (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'q', 'Ellipsoid name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'r', 'Semi-major axis (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 's', 'Denominator of flattening ratio (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 't', 'Vertical resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'u', 'Vertical encoding method (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'v', 'Local planar, local, or other projection or grid description (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'w', 'Local planar or local georeference information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', '2', 'Reference method used (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 343 file: www.loc.gov/marc/bibliographic/concise/bd343.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_343_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_343_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_343_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_343_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'a', 'Planar coordinate encoding method (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'b', 'Planar distance units (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'c', 'Abscissa resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'd', 'Ordinate resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'e', 'Distance resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'f', 'Bearing resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'g', 'Bearing units (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'h', 'Bearing reference direction (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'i', 'Bearing reference meridian (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 343 file: www.loc.gov/marc/bibliographic/concise/bd343.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_343_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_343_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_343_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_343_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'a', 'Planar coordinate encoding method (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'b', 'Planar distance units (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'c', 'Abscissa resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'd', 'Ordinate resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'e', 'Distance resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'f', 'Bearing resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'g', 'Bearing units (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'h', 'Bearing reference direction (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'i', 'Bearing reference meridian (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 351 file: www.loc.gov/marc/bibliographic/concise/bd351.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_351_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_351_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_351_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_351_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', 'a', 'Organization (R) Manner in which the described materials are subdivided into smaller units, such as how record groups are divided into series and series into subseries. For computer files, contains information about the file structure or the name of the computer software or system.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', 'b', 'Arrangement (R) Pattern of arrangement of materials within a unit (e.g., alphabetical, chronological, by country, by office of origin, etc.).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', 'c', 'Hierarchical level (NR) Hierarchical position of the described materials relative to other records from the same source.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', '3', 'Materials specified (NR) Part of the described materials to which the field applies.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 351 file: www.loc.gov/marc/bibliographic/concise/bd351.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_351_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_351_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_351_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_351_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', 'a', 'Organization (R) Manner in which the described materials are subdivided into smaller units, such as how record groups are divided into series and series into subseries. For computer files, contains information about the file structure or the name of the computer software or system.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', 'b', 'Arrangement (R) Pattern of arrangement of materials within a unit (e.g., alphabetical, chronological, by country, by office of origin, etc.).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', 'c', 'Hierarchical level (NR) Hierarchical position of the described materials relative to other records from the same source.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', '3', 'Materials specified (NR) Part of the described materials to which the field applies.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 352 file: www.loc.gov/marc/bibliographic/concise/bd352.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_352_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_352_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_352_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_352_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'a', 'Direct reference method (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'b', 'Object type (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'c', 'Object count (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'd', 'Row count (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'e', 'Column count (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'f', 'Vertical count (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'g', 'VPF topology level (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'i', 'Indirect reference description (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'q', 'Format of the digital image (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 352 file: www.loc.gov/marc/bibliographic/concise/bd352.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_352_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_352_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_352_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_352_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'a', 'Direct reference method (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'b', 'Object type (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'c', 'Object count (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'd', 'Row count (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'e', 'Column count (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'f', 'Vertical count (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'g', 'VPF topology level (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'i', 'Indirect reference description (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'q', 'Format of the digital image (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 355 file: www.loc.gov/marc/bibliographic/concise/bd355.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_355_ind_1$ident$, - BTRIM($label$First - Controlled element - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '0', 'Document', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '1', 'Title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '2', 'Abstract', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '3', 'Contents note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '4', 'Author', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '5', 'Record', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '8', 'None of the above', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_355_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'a', 'Security classification (NR) Security classification (e.g., Unclassified, Secret, Confidential) associated with the document, title, abstract, contents note, or author.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'b', 'Handling instructions (R) Handling instructions, e.g., who internally in the organization may handle or see the document, title, abstract, contents note, or author.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'c', 'External dissemination information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'd', 'Downgrading or declassification event (NR) Data about the security classification, often a phrase pertaining to downgrading or declassification, e.g., OADR (which stands for "Original Agency Determination Required"). Dates relating to the downgrading or declassification are recorded in subfields $g or $h.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'e', 'Classification system (NR) Name of a security classification system, not necessarily come from a controlled list.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'f', 'Country of origin code (NR) Two- or three-character alphabetic MARC code indicating the country of origin of the classification. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'g', 'Downgrading date (NR) Date pertaining to the downgrading of the document, title, abstract, contents note, or author. Downgrading involves changes to security classification, from a higher level to lower level of classification.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'h', 'Declassification date (NR) Date pertaining to the declassification of the document, title, abstract, contents note, or author. Declassification involves the removal of any security classification on an item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'j', 'Authorization (R) Information that identifies by whose authority a change in security classification was made. The subfield contains a MARC code of the authorizing agency. See Appendix I: Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 355 file: www.loc.gov/marc/bibliographic/concise/bd355.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_355_ind_1$ident$, - BTRIM($label$First - Controlled element - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '0', 'Document', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '1', 'Title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '2', 'Abstract', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '3', 'Contents note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '4', 'Author', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '5', 'Record', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '8', 'None of the above', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_355_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'a', 'Security classification (NR) Security classification (e.g., Unclassified, Secret, Confidential) associated with the document, title, abstract, contents note, or author.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'b', 'Handling instructions (R) Handling instructions, e.g., who internally in the organization may handle or see the document, title, abstract, contents note, or author.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'c', 'External dissemination information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'd', 'Downgrading or declassification event (NR) Data about the security classification, often a phrase pertaining to downgrading or declassification, e.g., OADR (which stands for "Original Agency Determination Required"). Dates relating to the downgrading or declassification are recorded in subfields $g or $h.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'e', 'Classification system (NR) Name of a security classification system, not necessarily come from a controlled list.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'f', 'Country of origin code (NR) Two- or three-character alphabetic MARC code indicating the country of origin of the classification. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'g', 'Downgrading date (NR) Date pertaining to the downgrading of the document, title, abstract, contents note, or author. Downgrading involves changes to security classification, from a higher level to lower level of classification.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'h', 'Declassification date (NR) Date pertaining to the declassification of the document, title, abstract, contents note, or author. Declassification involves the removal of any security classification on an item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'j', 'Authorization (R) Information that identifies by whose authority a change in security classification was made. The subfield contains a MARC code of the authorizing agency. See Appendix I: Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 357 file: www.loc.gov/marc/bibliographic/concise/bd357.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_357_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_357_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_357_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_357_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'a', 'Originator control term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'b', 'Originating agency (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'c', 'Authorized recipients of material (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'g', 'Other restrictions (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 357 file: www.loc.gov/marc/bibliographic/concise/bd357.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_357_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_357_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_357_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_357_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'a', 'Originator control term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'b', 'Originating agency (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'c', 'Authorized recipients of material (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'g', 'Other restrictions (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 362 file: www.loc.gov/marc/bibliographic/concise/bd362.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_362_ind_1$ident$, - BTRIM($label$First - Format of date - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_362_ind_1', '0', 'Formatted style', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_362_ind_1', '1', 'Unformatted note', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_362_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_362_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', 'a', 'Dates of publication and/or sequential designation (NR) When both a sequential designation and a chronological designation are given, the chronological one is enclosed in parentheses.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', 'z', 'Source of information (NR) Citation of the source of information contained in subfield $a; used only when the first indicator position contains value 1 (unformatted notes).','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 362 file: www.loc.gov/marc/bibliographic/concise/bd362.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_362_ind_1$ident$, - BTRIM($label$First - Format of date - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_362_ind_1', '0', 'Formatted style', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_362_ind_1', '1', 'Unformatted note', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_362_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_362_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', 'a', 'Dates of publication and/or sequential designation (NR) When both a sequential designation and a chronological designation are given, the chronological one is enclosed in parentheses.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', 'z', 'Source of information (NR) Citation of the source of information contained in subfield $a; used only when the first indicator position contains value 1 (unformatted notes).','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 365 file: www.loc.gov/marc/bibliographic/concise/bd365.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_365_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_365_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_365_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_365_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'a', 'Price type code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'b', 'Price amount (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'c', 'Currency code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'd', 'Unit of pricing (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'e', 'Price note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'f', 'Price effective from (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'g', 'Price effective until (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'h', 'Tax rate 1 (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'i', 'Tax rate 2 (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'j', 'ISO country code (NR) Code from: ISO 3166-1, Codes for the Representation of Names of Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'k', 'MARC country code (NR) Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'm', 'Identification of pricing entity (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', '2', 'Source of price type code (NR) Code from: Price Type Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 365 file: www.loc.gov/marc/bibliographic/concise/bd365.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_365_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_365_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_365_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_365_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'a', 'Price type code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'b', 'Price amount (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'c', 'Currency code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'd', 'Unit of pricing (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'e', 'Price note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'f', 'Price effective from (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'g', 'Price effective until (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'h', 'Tax rate 1 (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'i', 'Tax rate 2 (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'j', 'ISO country code (NR) Code from: ISO 3166-1, Codes for the Representation of Names of Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'k', 'MARC country code (NR) Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'm', 'Identification of pricing entity (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', '2', 'Source of price type code (NR) Code from: Price Type Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 366 file: www.loc.gov/marc/bibliographic/concise/bd366.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_366_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_366_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_366_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_366_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'a', 'Publishers'' compressed title identification (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'b', 'Detailed date of publication (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'c', 'Availability status code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'd', 'Expected next availability date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'e', 'Note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'f', 'Publisher''s discount category (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'g', 'Date made out of print (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'j', 'ISO country code (NR) Code from: ISO 3166-1, Codes for the Representation of Names of Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'k', 'MARC country code (NR) Code for the country in which the information in the field is applicable. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'm', 'Identification of agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', '2', 'Source of availability status code (NR) MARC code that identifies the source of the availability status code recorded in subfield $c. Code from: Availability Status Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 366 file: www.loc.gov/marc/bibliographic/concise/bd366.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_366_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_366_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_366_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_366_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'a', 'Publishers'' compressed title identification (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'b', 'Detailed date of publication (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'c', 'Availability status code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'd', 'Expected next availability date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'e', 'Note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'f', 'Publisher''s discount category (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'g', 'Date made out of print (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'j', 'ISO country code (NR) Code from: ISO 3166-1, Codes for the Representation of Names of Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'k', 'MARC country code (NR) Code for the country in which the information in the field is applicable. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'm', 'Identification of agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', '2', 'Source of availability status code (NR) MARC code that identifies the source of the availability status code recorded in subfield $c. Code from: Availability Status Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 504 file: www.loc.gov/marc/bibliographic/concise/bd504.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_504_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_504_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_504_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_504_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', 'a', 'Bibliography, etc. note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', 'b', 'Number of references (NR) Used to indicate the significance of a bibliography.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 504 file: www.loc.gov/marc/bibliographic/concise/bd504.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_504_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_504_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_504_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_504_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', 'a', 'Bibliography, etc. note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', 'b', 'Number of references (NR) Used to indicate the significance of a bibliography.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 511 file: www.loc.gov/marc/bibliographic/concise/bd511.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_511_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_511_ind_1', '0', 'No display constant generated', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_511_ind_1', '1', 'Cast', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_511_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_511_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '511', 'a', 'Participant or performer note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '511', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '511', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 511 file: www.loc.gov/marc/bibliographic/concise/bd511.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_511_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_511_ind_1', '0', 'No display constant generated', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_511_ind_1', '1', 'Cast', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_511_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_511_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '511', 'a', 'Participant or performer note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '511', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '511', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 513 file: www.loc.gov/marc/bibliographic/concise/bd513.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_513_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_513_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_513_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_513_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', 'a', 'Type of report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', 'b', 'Period covered (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 513 file: www.loc.gov/marc/bibliographic/concise/bd513.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_513_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_513_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_513_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_513_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', 'a', 'Type of report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', 'b', 'Period covered (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 514 file: www.loc.gov/marc/bibliographic/concise/bd514.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_514_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_514_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_514_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_514_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'a', 'Attribute accuracy report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'b', 'Attribute accuracy value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'c', 'Attribute accuracy explanation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'd', 'Logical consistency report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'e', 'Completeness report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'f', 'Horizontal position accuracy report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'g', 'Horizontal position accuracy value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'h', 'Horizontal position accuracy explanation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'i', 'Vertical positional accuracy report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'j', 'Vertical positional accuracy value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'k', 'Vertical positional accuracy explanation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'm', 'Cloud cover (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'u', 'Uniform Resource Identifier (R) Uniform Resource Identifier (URI), for example a URL or URN, which provides electronic access data in a standard syntax. This data can be used for automated access to an electronic item using one of the Internet protocols.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'z', 'Display note (R) Introduces the data in the field, when needed.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 514 file: www.loc.gov/marc/bibliographic/concise/bd514.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_514_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_514_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_514_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_514_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'a', 'Attribute accuracy report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'b', 'Attribute accuracy value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'c', 'Attribute accuracy explanation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'd', 'Logical consistency report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'e', 'Completeness report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'f', 'Horizontal position accuracy report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'g', 'Horizontal position accuracy value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'h', 'Horizontal position accuracy explanation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'i', 'Vertical positional accuracy report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'j', 'Vertical positional accuracy value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'k', 'Vertical positional accuracy explanation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'm', 'Cloud cover (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'u', 'Uniform Resource Identifier (R) Uniform Resource Identifier (URI), for example a URL or URN, which provides electronic access data in a standard syntax. This data can be used for automated access to an electronic item using one of the Internet protocols.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'z', 'Display note (R) Introduces the data in the field, when needed.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 516 file: www.loc.gov/marc/bibliographic/concise/bd516.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_516_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_516_ind_1', '#', 'Type of file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_516_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_516_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_516_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '516', 'a', 'Type of computer file or data note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '516', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '516', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 516 file: www.loc.gov/marc/bibliographic/concise/bd516.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_516_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_516_ind_1', '#', 'Type of file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_516_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_516_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_516_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '516', 'a', 'Type of computer file or data note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '516', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '516', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 521 file: www.loc.gov/marc/bibliographic/concise/bd521.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_521_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '#', 'Audience', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '0', 'Reading grade level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '1', 'Interest age level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '2', 'Interest grade level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '3', 'Special audience characteristics', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '4', 'Motivation/interest level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_521_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', 'a', 'Target audience note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', 'b', 'Source (NR) Name or abbreviation of the agency or entity that determined the target audience of the item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 521 file: www.loc.gov/marc/bibliographic/concise/bd521.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_521_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '#', 'Audience', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '0', 'Reading grade level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '1', 'Interest age level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '2', 'Interest grade level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '3', 'Special audience characteristics', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '4', 'Motivation/interest level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_521_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', 'a', 'Target audience note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', 'b', 'Source (NR) Name or abbreviation of the agency or entity that determined the target audience of the item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 522 file: www.loc.gov/marc/bibliographic/concise/bd522.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_522_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_522_ind_1', '#', 'Geographic coverage', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_522_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_522_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_522_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '522', 'a', 'Geographic coverage note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '522', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '522', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 522 file: www.loc.gov/marc/bibliographic/concise/bd522.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_522_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_522_ind_1', '#', 'Geographic coverage', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_522_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_522_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_522_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '522', 'a', 'Geographic coverage note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '522', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '522', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 524 file: www.loc.gov/marc/bibliographic/concise/bd524.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_524_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_524_ind_1', '#', 'Cite as', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_524_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_524_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_524_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', 'a', 'Preferred citation of described materials note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '2', 'Source of schema used (NR) Code from: Citation Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 524 file: www.loc.gov/marc/bibliographic/concise/bd524.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_524_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_524_ind_1', '#', 'Cite as', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_524_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_524_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_524_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', 'a', 'Preferred citation of described materials note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '2', 'Source of schema used (NR) Code from: Citation Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 525 file: www.loc.gov/marc/bibliographic/concise/bd525.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_525_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_525_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_525_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_525_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '525', 'a', 'Supplement note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '525', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '525', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 525 file: www.loc.gov/marc/bibliographic/concise/bd525.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_525_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_525_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_525_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_525_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '525', 'a', 'Supplement note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '525', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '525', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 526 file: www.loc.gov/marc/bibliographic/concise/bd526.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_526_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_526_ind_1', '0', 'Reading program', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_526_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_526_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_526_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'a', 'Program name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'b', 'Interest level (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'c', 'Reading level (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'd', 'Title point value (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'i', 'Display text (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'x', 'Nonpublic note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', '8', 'Field link and sequence number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 526 file: www.loc.gov/marc/bibliographic/concise/bd526.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_526_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_526_ind_1', '0', 'Reading program', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_526_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_526_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_526_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'a', 'Program name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'b', 'Interest level (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'c', 'Reading level (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'd', 'Title point value (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'i', 'Display text (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'x', 'Nonpublic note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', '8', 'Field link and sequence number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 530 file: www.loc.gov/marc/bibliographic/concise/bd530.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_530_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_530_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_530_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_530_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'a', 'Additional physical form available note (NR) For continuing resources, availability source, availability conditions, and order number information are included in subfield $a.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'b', 'Availability source (NR) Organizational unit or vendor from which the additional physical form may be acquired.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'c', 'Availability conditions (NR) Terms under which the additional physical form of the materials is available (e.g., Photocopies at cost).','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'd', 'Order number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'u', 'Uniform Resource Identifier (R) Uniform Resource Identifier (URI), for example a URL or URN, which provides electronic access data in a standard syntax. This data can be used for automated access to an electronic item using one of the Internet protocols.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 530 file: www.loc.gov/marc/bibliographic/concise/bd530.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_530_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_530_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_530_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_530_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'a', 'Additional physical form available note (NR) For continuing resources, availability source, availability conditions, and order number information are included in subfield $a.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'b', 'Availability source (NR) Organizational unit or vendor from which the additional physical form may be acquired.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'c', 'Availability conditions (NR) Terms under which the additional physical form of the materials is available (e.g., Photocopies at cost).','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'd', 'Order number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'u', 'Uniform Resource Identifier (R) Uniform Resource Identifier (URI), for example a URL or URN, which provides electronic access data in a standard syntax. This data can be used for automated access to an electronic item using one of the Internet protocols.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 535 file: www.loc.gov/marc/bibliographic/concise/bd535.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_535_ind_1$ident$, - BTRIM($label$First - Custodial role - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_535_ind_1', '1', 'Holder of originals', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_535_ind_1', '2', 'Holder of duplicates', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_535_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_535_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'a', 'Custodian (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'b', 'Postal address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'c', 'Country (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'd', 'Telecommunications address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'g', 'Repository location code (NR) Two- or three-character MARC code for the country of the repository holding originals or duplicates of the material. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 535 file: www.loc.gov/marc/bibliographic/concise/bd535.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_535_ind_1$ident$, - BTRIM($label$First - Custodial role - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_535_ind_1', '1', 'Holder of originals', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_535_ind_1', '2', 'Holder of duplicates', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_535_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_535_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'a', 'Custodian (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'b', 'Postal address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'c', 'Country (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'd', 'Telecommunications address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'g', 'Repository location code (NR) Two- or three-character MARC code for the country of the repository holding originals or duplicates of the material. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 536 file: www.loc.gov/marc/bibliographic/concise/bd536.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_536_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_536_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_536_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_536_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'a', 'Text of note (NR) Information concerning the sponsors or funding agencies.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'b', 'Contract number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'c', 'Grant number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'd', 'Undifferentiated number (R) Undifferentiated number associated with the material that identifies a project, task or work unit number.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'e', 'Program element number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'f', 'Project number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'g', 'Task number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'h', 'Work unit number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 536 file: www.loc.gov/marc/bibliographic/concise/bd536.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_536_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_536_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_536_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_536_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'a', 'Text of note (NR) Information concerning the sponsors or funding agencies.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'b', 'Contract number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'c', 'Grant number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'd', 'Undifferentiated number (R) Undifferentiated number associated with the material that identifies a project, task or work unit number.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'e', 'Program element number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'f', 'Project number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'g', 'Task number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'h', 'Work unit number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 538 file: www.loc.gov/marc/bibliographic/concise/bd538.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_538_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_538_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_538_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_538_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', 'a', 'System details note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', 'i', 'Display text (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 538 file: www.loc.gov/marc/bibliographic/concise/bd538.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_538_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_538_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_538_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_538_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', 'a', 'System details note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', 'i', 'Display text (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 541 file: www.loc.gov/marc/bibliographic/concise/bd541.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_541_ind_1$ident$, - BTRIM($label$First - Privacy - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_541_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'a', 'Source of acquisition (NR) Name of the person(s) or organization that is the source of the material.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'b', 'Address (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'c', 'Method of acquisition (NR) Terms under which a transfer of physical custody occurs, for example, by gift, bequest, loan, purchase, deposit.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'd', 'Date of acquisition (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'e', 'Accession number (NR) Identification code assigned to materials acquired in a single and separate transfer of custody.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'f', 'Owner (NR) Name of the individual or organization with legal custody over the described materials.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'h', 'Purchase price (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'n', 'Extent (R) Number of items acquired.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'o', 'Type of unit (R) Name of the unit of measurement, e.g., cartons.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 541 file: www.loc.gov/marc/bibliographic/concise/bd541.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_541_ind_1$ident$, - BTRIM($label$First - Privacy - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_541_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'a', 'Source of acquisition (NR) Name of the person(s) or organization that is the source of the material.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'b', 'Address (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'c', 'Method of acquisition (NR) Terms under which a transfer of physical custody occurs, for example, by gift, bequest, loan, purchase, deposit.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'd', 'Date of acquisition (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'e', 'Accession number (NR) Identification code assigned to materials acquired in a single and separate transfer of custody.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'f', 'Owner (NR) Name of the individual or organization with legal custody over the described materials.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'h', 'Purchase price (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'n', 'Extent (R) Number of items acquired.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'o', 'Type of unit (R) Name of the unit of measurement, e.g., cartons.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 544 file: www.loc.gov/marc/bibliographic/concise/bd544.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_544_ind_1$ident$, - BTRIM($label$First - Relationship - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_1', '0', 'Associated materials - Other materials identified in the note have the same provenance but reside in a - different repository.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_1', '1', 'Related materials - Other materials identified in the note share the sphere of activity, reside in - the same repository, but have different provenance.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_544_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'a', 'Custodian (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'b', 'Address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'c', 'Country (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'd', 'Title (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'e', 'Provenance (R) History of custody of the described materials since their creation, including any changes successive custodians made to them.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'n', 'Note (R) Entire text of the note that describes the other materials. Subfield $n may be used instead of the specific subfields for title of materials, custodian, and provenance.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 544 file: www.loc.gov/marc/bibliographic/concise/bd544.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_544_ind_1$ident$, - BTRIM($label$First - Relationship - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_1', '0', 'Associated materials - Other materials identified in the note have the same provenance but reside in a - different repository.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_1', '1', 'Related materials - Other materials identified in the note share the sphere of activity, reside in - the same repository, but have different provenance.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_544_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'a', 'Custodian (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'b', 'Address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'c', 'Country (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'd', 'Title (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'e', 'Provenance (R) History of custody of the described materials since their creation, including any changes successive custodians made to them.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'n', 'Note (R) Entire text of the note that describes the other materials. Subfield $n may be used instead of the specific subfields for title of materials, custodian, and provenance.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 545 file: www.loc.gov/marc/bibliographic/concise/bd545.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_545_ind_1$ident$, - BTRIM($label$First - Type of data - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_1', '0', 'Biographical sketch', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_1', '1', 'Administrative history', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_545_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', 'a', 'Biographical or historical data (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', 'b', 'Expansion (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 545 file: www.loc.gov/marc/bibliographic/concise/bd545.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_545_ind_1$ident$, - BTRIM($label$First - Type of data - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_1', '0', 'Biographical sketch', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_1', '1', 'Administrative history', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_545_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', 'a', 'Biographical or historical data (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', 'b', 'Expansion (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 547 file: www.loc.gov/marc/bibliographic/concise/bd547.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_547_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_547_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_547_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_547_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '547', 'a', 'Former title complexity note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '547', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '547', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 547 file: www.loc.gov/marc/bibliographic/concise/bd547.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_547_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_547_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_547_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_547_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '547', 'a', 'Former title complexity note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '547', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '547', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 552 file: www.loc.gov/marc/bibliographic/concise/bd552.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_552_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_552_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_552_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_552_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'a', 'Entity type label (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'b', 'Entity type definition and source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'c', 'Attribute label (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'd', 'Attribute definition and source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'e', 'Enumerated domain value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'f', 'Enumerated domain value definition and source (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'g', 'Range domain minimum and maximum (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'h', 'Codeset name and source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'i', 'Unrepresentable domain (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'j', 'Attribute units of measurement and resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'k', 'Beginning and ending date of attribute values (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'l', 'Attribute value accuracy (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'm', 'Attribute value accuracy explanation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'n', 'Attribute measurement frequency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'o', 'Entity and attribute overview (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'p', 'Entity and attribute detail citation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'z', 'Display note (R) Note that introduces the data in the field when needed.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 552 file: www.loc.gov/marc/bibliographic/concise/bd552.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_552_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_552_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_552_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_552_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'a', 'Entity type label (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'b', 'Entity type definition and source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'c', 'Attribute label (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'd', 'Attribute definition and source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'e', 'Enumerated domain value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'f', 'Enumerated domain value definition and source (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'g', 'Range domain minimum and maximum (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'h', 'Codeset name and source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'i', 'Unrepresentable domain (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'j', 'Attribute units of measurement and resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'k', 'Beginning and ending date of attribute values (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'l', 'Attribute value accuracy (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'm', 'Attribute value accuracy explanation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'n', 'Attribute measurement frequency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'o', 'Entity and attribute overview (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'p', 'Entity and attribute detail citation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'z', 'Display note (R) Note that introduces the data in the field when needed.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 556 file: www.loc.gov/marc/bibliographic/concise/bd556.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_556_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_556_ind_1', '#', 'Documentation - Used to generate the display constant Documentation:.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_556_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_556_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_556_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', 'a', 'Information about documentation note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', 'z', 'International Standard Book Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 556 file: www.loc.gov/marc/bibliographic/concise/bd556.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_556_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_556_ind_1', '#', 'Documentation - Used to generate the display constant Documentation:.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_556_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_556_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_556_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', 'a', 'Information about documentation note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', 'z', 'International Standard Book Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 562 file: www.loc.gov/marc/bibliographic/concise/bd562.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_562_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_562_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_562_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_562_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'a', 'Identifying markings (R) Markings on the support or imbedded in the medium that can be used to identify the copy of the described materials (e.g., watermarks, annotations, or captions).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'b', 'Copy identification (R) Information such as names, codes, numbers, or description used to distinguish one copy of the described materials from other copies.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'c', 'Version identification (R) Information such as names, codes, or descriptions used to identify a version that differs in content but is related across time to another version, such as an edition.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'd', 'Presentation format (R) Presentation format in which the recorded materials, regardless of their current medium, were intended to be used, seen, or heard (e.g., a film made for TV or a text intended for oral proclamation).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'e', 'Number of copies (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 562 file: www.loc.gov/marc/bibliographic/concise/bd562.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_562_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_562_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_562_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_562_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'a', 'Identifying markings (R) Markings on the support or imbedded in the medium that can be used to identify the copy of the described materials (e.g., watermarks, annotations, or captions).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'b', 'Copy identification (R) Information such as names, codes, numbers, or description used to distinguish one copy of the described materials from other copies.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'c', 'Version identification (R) Information such as names, codes, or descriptions used to identify a version that differs in content but is related across time to another version, such as an edition.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'd', 'Presentation format (R) Presentation format in which the recorded materials, regardless of their current medium, were intended to be used, seen, or heard (e.g., a film made for TV or a text intended for oral proclamation).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'e', 'Number of copies (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 563 file: www.loc.gov/marc/bibliographic/concise/bd563.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_563_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_563_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_563_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_563_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', 'a', 'Binding note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 563 file: www.loc.gov/marc/bibliographic/concise/bd563.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_563_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_563_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_563_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_563_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', 'a', 'Binding note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 565 file: www.loc.gov/marc/bibliographic/concise/bd565.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_565_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_1', '#', 'File size', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_1', '0', 'Case file characteristics', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_565_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'a', 'Number of cases/variables (NR) Number of cases or number of variables in a single case within a repetitive case file series.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'b', 'Name of variable (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'c', 'Unit of analysis (R) Subject to which variables in case files or data bases refer; for example, convicts in correctional files, workers in personnel records, or casualities in emergency room intake files.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'd', 'Universe of data (R) Scope of the data collection effort and the specifications of the sample represented in the described materials.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'e', 'Filing scheme or code (R) Information that places the described materials in the context of a scheme of intellectual arrangement.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 565 file: www.loc.gov/marc/bibliographic/concise/bd565.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_565_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_1', '#', 'File size', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_1', '0', 'Case file characteristics', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_565_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'a', 'Number of cases/variables (NR) Number of cases or number of variables in a single case within a repetitive case file series.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'b', 'Name of variable (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'c', 'Unit of analysis (R) Subject to which variables in case files or data bases refer; for example, convicts in correctional files, workers in personnel records, or casualities in emergency room intake files.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'd', 'Universe of data (R) Scope of the data collection effort and the specifications of the sample represented in the described materials.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'e', 'Filing scheme or code (R) Information that places the described materials in the context of a scheme of intellectual arrangement.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 580 file: www.loc.gov/marc/bibliographic/concise/bd580.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_580_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_580_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_580_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_580_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '580', 'a', 'Linking entry complexity note (NR) Catalog entry for the related title and a statement describing the relationship.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '580', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '580', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 580 file: www.loc.gov/marc/bibliographic/concise/bd580.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_580_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_580_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_580_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_580_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '580', 'a', 'Linking entry complexity note (NR) Catalog entry for the related title and a statement describing the relationship.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '580', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '580', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 581 file: www.loc.gov/marc/bibliographic/concise/bd581.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_581_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_581_ind_1', '#', 'Publications', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_581_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_581_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_581_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', 'a', 'Publications about described materials note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', 'z', 'International Standard Book Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 581 file: www.loc.gov/marc/bibliographic/concise/bd581.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_581_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_581_ind_1', '#', 'Publications', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_581_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_581_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_581_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', 'a', 'Publications about described materials note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', 'z', 'International Standard Book Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 584 file: www.loc.gov/marc/bibliographic/concise/bd584.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_584_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_584_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_584_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_584_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', 'a', 'Accumulation (R) Rate at which the described materials are accumulating expressed as a ratio of volume to time period.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', 'b', 'Frequency of use (R) Measure of reference activity, usually expressed as a ratio of number of retrievals to time period, or by general terms such as active or inactive.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 584 file: www.loc.gov/marc/bibliographic/concise/bd584.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_584_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_584_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_584_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_584_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', 'a', 'Accumulation (R) Rate at which the described materials are accumulating expressed as a ratio of volume to time period.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', 'b', 'Frequency of use (R) Measure of reference activity, usually expressed as a ratio of number of retrievals to time period, or by general terms such as active or inactive.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 585 file: www.loc.gov/marc/bibliographic/concise/bd585.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_585_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_585_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_585_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_585_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', 'a', 'Exhibitions note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 585 file: www.loc.gov/marc/bibliographic/concise/bd585.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_585_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_585_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_585_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_585_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', 'a', 'Exhibitions note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 586 file: www.loc.gov/marc/bibliographic/concise/bd586.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_586_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_586_ind_1', '#', 'Awards', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_586_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_586_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_586_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', 'a', 'Awards note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', '8', 'Field link and sequence number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 586 file: www.loc.gov/marc/bibliographic/concise/bd586.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_586_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_586_ind_1', '#', 'Awards', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_586_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_586_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_586_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', 'a', 'Awards note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', '8', 'Field link and sequence number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 59x file: www.loc.gov/marc/bibliographic/concise/bd59x.html --- category: biblio tag: 69x file: www.loc.gov/marc/bibliographic/concise/bd69x.html --- category: biblio tag: 740 file: www.loc.gov/marc/bibliographic/concise/bd740.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_740_ind_1$ident$, - BTRIM($label$First - Nonfiling characters - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_740_ind_2$ident$, - BTRIM($label$Second - Type of added entry - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_2', '2', 'Analytical entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'a', 'Uncontrolled related/analytical title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'h', 'Medium (NR) Media qualifier.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'n', 'Number of part/section of a work (R) Number designation for a part/section of a work used in a title.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'p', 'Name of part/section of a work (R) Name designation of a part/section of work in a title.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 740 file: www.loc.gov/marc/bibliographic/concise/bd740.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_740_ind_1$ident$, - BTRIM($label$First - Nonfiling characters - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_740_ind_2$ident$, - BTRIM($label$Second - Type of added entry - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_2', '2', 'Analytical entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'a', 'Uncontrolled related/analytical title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'h', 'Medium (NR) Media qualifier.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'n', 'Number of part/section of a work (R) Number designation for a part/section of a work used in a title.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'p', 'Name of part/section of a work (R) Name designation of a part/section of work in a title.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 850 file: www.loc.gov/marc/bibliographic/concise/bd850.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_850_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_850_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_850_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_850_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '850', 'a', 'Holding institution (R) MARC code or the name of the institution holding the item. See Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '850', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 850 file: www.loc.gov/marc/bibliographic/concise/bd850.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_850_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_850_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_850_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_850_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '850', 'a', 'Holding institution (R) MARC code or the name of the institution holding the item. See Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '850', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 880 file: www.loc.gov/marc/bibliographic/concise/bd880.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_880_ind_1$ident$, - BTRIM($label$First - Appropriate indicator as available in associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_880_ind_2$ident$, - BTRIM($label$Second - Appropriate indicator as available in associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'a', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'b', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'c', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'd', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'e', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'f', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'g', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'h', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'i', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'j', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'k', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'l', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'm', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'n', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'o', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'p', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'q', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'r', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 's', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 't', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'u', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'v', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'w', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'x', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'y', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'z', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '0', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '1', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '2', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '3', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '4', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '5', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '7', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '8', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '9', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 880 file: www.loc.gov/marc/bibliographic/concise/bd880.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_880_ind_1$ident$, - BTRIM($label$First - Appropriate indicator as available in associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_880_ind_2$ident$, - BTRIM($label$Second - Appropriate indicator as available in associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'a', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'b', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'c', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'd', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'e', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'f', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'g', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'h', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'i', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'j', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'k', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'l', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'm', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'n', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'o', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'p', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'q', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'r', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 's', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 't', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'u', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'v', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'w', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'x', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'y', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'z', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '0', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '1', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '2', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '3', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '4', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '5', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '7', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '8', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '9', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 882 file: www.loc.gov/marc/bibliographic/concise/bd882.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_882_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_882_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_882_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_882_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', 'a', 'Replacement title (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', 'i', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', 'w', 'Replacement bibliographic record control number (R) System control number of the replacement bibliographic record preceded by the MARC code, enclosed in parentheses, for the agency to which the control number applies. See Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 882 file: www.loc.gov/marc/bibliographic/concise/bd882.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_882_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_882_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_882_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_882_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', 'a', 'Replacement title (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', 'i', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', 'w', 'Replacement bibliographic record control number (R) System control number of the replacement bibliographic record preceded by the MARC code, enclosed in parentheses, for the agency to which the control number applies. See Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 886 file: www.loc.gov/marc/bibliographic/concise/bd886.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_886_ind_1$ident$, - BTRIM($label$First - Type of field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_1', '0', 'Leader', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_1', '1', 'Variable control fields (002-009)', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_1', '2', 'Variable data fields (010-999)', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_886_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'a', 'Tag of the foreign MARC field (NR) Not present when the first indicator value is 0 (Leader). When it is present, subfield $a is the second subfield in the field, immediately before subfield $b.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'b', 'Content of the foreign MARC field (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '2', 'Source of data (NR) MARC code for the foreign MARC format from which the record is converted. Must be first subfield in the field. Code from: Format Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'a', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'b', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'c', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'd', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'e', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'f', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'g', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'h', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'i', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'j', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'k', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'l', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'm', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'n', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'o', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'p', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'q', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'r', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 's', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 't', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'u', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'v', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'w', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'x', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'y', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'z', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '0', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '1', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '2', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '3', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '4', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '5', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '6', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '7', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '8', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '9', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 886 file: www.loc.gov/marc/bibliographic/concise/bd886.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_886_ind_1$ident$, - BTRIM($label$First - Type of field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_1', '0', 'Leader', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_1', '1', 'Variable control fields (002-009)', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_1', '2', 'Variable data fields (010-999)', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_886_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'a', 'Tag of the foreign MARC field (NR) Not present when the first indicator value is 0 (Leader). When it is present, subfield $a is the second subfield in the field, immediately before subfield $b.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'b', 'Content of the foreign MARC field (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '2', 'Source of data (NR) MARC code for the foreign MARC format from which the record is converted. Must be first subfield in the field. Code from: Format Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'a', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'b', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'c', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'd', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'e', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'f', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'g', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'h', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'i', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'j', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'k', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'l', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'm', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'n', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'o', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'p', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'q', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'r', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 's', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 't', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'u', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'v', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'w', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'x', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'y', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'z', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '0', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '1', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '2', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '3', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '4', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '5', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '6', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '7', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '8', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '9', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 887 file: www.loc.gov/marc/bibliographic/concise/bd887.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_887_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_887_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_887_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_887_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '887', 'a', 'Content of non-MARC field (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '887', '2', 'Source of data (NR) Source of the data, either a schema or DTD reference. Code from: Format Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 887 file: www.loc.gov/marc/bibliographic/concise/bd887.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_887_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_887_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_887_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_887_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '887', 'a', 'Content of non-MARC field (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '887', '2', 'Source of data (NR) Source of the data, either a schema or DTD reference. Code from: Format Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: int file: www.loc.gov/marc/bibliographic/concise/bdintro.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007v.html --- category: biblio tag: 017 file: www.loc.gov/marc/bibliographic/concise/bd017.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_017_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_017_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_017_ind_2$ident$, - BTRIM($label$Second - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_017_ind_2', '#', 'Copyright or legal deposit number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_017_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'a', 'Copyright or legal deposit number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'b', 'Assigning agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'd', 'Date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'i', 'Display text (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'z', 'Canceled/invalid copyright or legal deposit number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', '2', 'Source (NR) Code from: Copyright and Legal Deposit Number Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 017 file: www.loc.gov/marc/bibliographic/concise/bd017.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_017_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_017_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_017_ind_2$ident$, - BTRIM($label$Second - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_017_ind_2', '#', 'Copyright or legal deposit number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_017_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'a', 'Copyright or legal deposit number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'b', 'Assigning agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'd', 'Date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'i', 'Display text (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'z', 'Canceled/invalid copyright or legal deposit number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', '2', 'Source (NR) Code from: Copyright and Legal Deposit Number Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 363 file: www.loc.gov/marc/bibliographic/concise/bd363.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_363_ind_1$ident$, - BTRIM($label$First - Start/End designator - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_1', '0', 'Starting information', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_1', '1', 'Ending information', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_363_ind_2$ident$, - BTRIM($label$Second - State of issuance - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_2', '#', 'Not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_2', '0', 'Closed - The sequence of the publication has terminated and is no longer being - issued.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_2', '1', 'Open - The sequence of the publication continues to be issued.', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'a', 'First level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'b', 'Second level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'c', 'Third level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'd', 'Fourth level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'e', 'Fifth level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'f', 'Sixth level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'g', 'Alternative numbering scheme, first level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'h', 'Alternative numbering scheme, second level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'i', 'First level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'j', 'Second level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'k', 'Third level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'l', 'Fourth level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'm', 'Alternative numbering scheme, chronology (NR) Highest level of an alternative chronology scheme.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'u', 'First level textual designation (NR) Textual information associated with enumeration and chronology.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'v', 'First level of chronology, issuance (NR) For items that use coverage in subfield $i (First level of chronology) when the issuing date is different.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'x', 'Nonpublic note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', '8', 'Field link and sequence number (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 363 file: www.loc.gov/marc/bibliographic/concise/bd363.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_363_ind_1$ident$, - BTRIM($label$First - Start/End designator - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_1', '0', 'Starting information', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_1', '1', 'Ending information', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_363_ind_2$ident$, - BTRIM($label$Second - State of issuance - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_2', '#', 'Not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_2', '0', 'Closed - The sequence of the publication has terminated and is no longer being - issued.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_2', '1', 'Open - The sequence of the publication continues to be issued.', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'a', 'First level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'b', 'Second level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'c', 'Third level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'd', 'Fourth level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'e', 'Fifth level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'f', 'Sixth level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'g', 'Alternative numbering scheme, first level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'h', 'Alternative numbering scheme, second level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'i', 'First level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'j', 'Second level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'k', 'Third level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'l', 'Fourth level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'm', 'Alternative numbering scheme, chronology (NR) Highest level of an alternative chronology scheme.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'u', 'First level textual designation (NR) Textual information associated with enumeration and chronology.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'v', 'First level of chronology, issuance (NR) For items that use coverage in subfield $i (First level of chronology) when the issuing date is different.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'x', 'Nonpublic note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', '8', 'Field link and sequence number (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 542 file: www.loc.gov/marc/bibliographic/concise/bd542.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_542_ind_1$ident$, - BTRIM($label$First - Privacy - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_542_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'a', 'Personal creator (NR) "Undetermined" may be used if research was done but no personal creator was found.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'b', 'Personal creator death date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'c', 'Corporate creator (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'd', 'Copyright holder (R) "Undetermined" may be used if research was done but no copyright holder was found.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'e', 'Copyright holder contact information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'f', 'Copyright statement (R) Copyright statement as it is presented on the resource.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'g', 'Copyright date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'h', 'Copyright renewal date (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'i', 'Publication date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'j', 'Creation date (NR) Year of creation for an unpublished resource.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'k', 'Publisher (R) "Undetermined" may be used if research was done but no publisher is found.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'l', 'Copyright status (NR) Determined status of the item. This is only recorded if it is known with certainty. "Undetermined" may be used if research was done but no status is found.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'm', 'Publication status (NR) Whether the item is published or unpublished, using the definition of published in copyright law of the jurisdiction, or that expressed in the Berne Convention''s specifications if other definitions are not available. "Undetermined" may be used if research was done but no status is found.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'n', 'Note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'o', 'Research date (NR) Date that the copyright data was determined based on research.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'p', 'Country of publication or creation (R) Country in which the resource was published or, in the case of unpublished materials, the country in which the resource was created.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'q', 'Supplying agency (NR) Code or name of agency supplying the information.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'r', 'Jurisdiction of copyright assessment (NR) Jurisdiction within which the copyright status assessment is being made.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 's', 'Source of information (NR) Source of the copyright information, whether from the piece or from other sources.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'u', 'Uniform Resource Identifier (R) Uniform Resource Identifier (URI), for example a URL or URN, which provides electronic access data in a standard syntax. The data may be a more detailed statement about information relating to copyright status.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 542 file: www.loc.gov/marc/bibliographic/concise/bd542.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_542_ind_1$ident$, - BTRIM($label$First - Privacy - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_542_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'a', 'Personal creator (NR) "Undetermined" may be used if research was done but no personal creator was found.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'b', 'Personal creator death date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'c', 'Corporate creator (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'd', 'Copyright holder (R) "Undetermined" may be used if research was done but no copyright holder was found.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'e', 'Copyright holder contact information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'f', 'Copyright statement (R) Copyright statement as it is presented on the resource.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'g', 'Copyright date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'h', 'Copyright renewal date (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'i', 'Publication date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'j', 'Creation date (NR) Year of creation for an unpublished resource.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'k', 'Publisher (R) "Undetermined" may be used if research was done but no publisher is found.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'l', 'Copyright status (NR) Determined status of the item. This is only recorded if it is known with certainty. "Undetermined" may be used if research was done but no status is found.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'm', 'Publication status (NR) Whether the item is published or unpublished, using the definition of published in copyright law of the jurisdiction, or that expressed in the Berne Convention''s specifications if other definitions are not available. "Undetermined" may be used if research was done but no status is found.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'n', 'Note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'o', 'Research date (NR) Date that the copyright data was determined based on research.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'p', 'Country of publication or creation (R) Country in which the resource was published or, in the case of unpublished materials, the country in which the resource was created.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'q', 'Supplying agency (NR) Code or name of agency supplying the information.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'r', 'Jurisdiction of copyright assessment (NR) Jurisdiction within which the copyright status assessment is being made.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 's', 'Source of information (NR) Source of the copyright information, whether from the piece or from other sources.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'u', 'Uniform Resource Identifier (R) Uniform Resource Identifier (URI), for example a URL or URN, which provides electronic access data in a standard syntax. The data may be a more detailed statement about information relating to copyright status.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007d.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007g.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007h.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007k.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007m.html --- category: biblio tag: 534 file: www.loc.gov/marc/bibliographic/concise/bd534.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_534_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_534_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_534_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_534_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'a', 'Main entry of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'b', 'Edition statement of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'c', 'Publication, distribution, etc. of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'e', 'Physical description, etc. of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'f', 'Series statement of original (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'k', 'Key title of original (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'l', 'Location of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'm', 'Material specific details (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'n', 'Note about original (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'o', 'Other resource identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'p', 'Introductory phrase (NR) Introductory phrase that introduces the citation of the original version.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 't', 'Title statement of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'x', 'International Standard Serial Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'z', 'International Standard Book Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 534 file: www.loc.gov/marc/bibliographic/concise/bd534.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_534_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_534_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_534_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_534_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'a', 'Main entry of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'b', 'Edition statement of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'c', 'Publication, distribution, etc. of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'e', 'Physical description, etc. of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'f', 'Series statement of original (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'k', 'Key title of original (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'l', 'Location of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'm', 'Material specific details (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'n', 'Note about original (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'o', 'Other resource identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'p', 'Introductory phrase (NR) Introductory phrase that introduces the citation of the original version.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 't', 'Title statement of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'x', 'International Standard Serial Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'z', 'International Standard Book Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 040 file: www.loc.gov/marc/authority/concise/ad040.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_040_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_040_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_040_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_040_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'a', 'Original cataloging agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'b', 'Language of cataloging (NR) MARC code for the language of the catalog for which the record is intended. Code from: MARC Code List for Languages.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'c', 'Transcribing agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'd', 'Modifying agency (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'e', 'Description conventions (R) Information specifying the description rules used in formulating the heading and reference structure when field 008/10 (Descriptive cataloging rules) contains code z (Other). Code from: Description Convention Source Codes.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'f', 'Subject heading/thesaurus conventions (NR) MARC code for the subject heading/thesaurus conventions used when field 008/11 (Subject heading system/thesaurus) contains code z (Other). Code from: Subject Heading and Term Source Codes, or from specialized subject term lists indicated in the introduction to Subject Heading and Term Source Codes, such as the Genre/Form Code and Term Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 040 file: www.loc.gov/marc/authority/concise/ad040.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_040_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_040_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_040_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_040_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'a', 'Original cataloging agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'b', 'Language of cataloging (NR) MARC code for the language of the catalog for which the record is intended. Code from: MARC Code List for Languages.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'c', 'Transcribing agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'd', 'Modifying agency (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'e', 'Description conventions (R) Information specifying the description rules used in formulating the heading and reference structure when field 008/10 (Descriptive cataloging rules) contains code z (Other). Code from: Description Convention Source Codes.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'f', 'Subject heading/thesaurus conventions (NR) MARC code for the subject heading/thesaurus conventions used when field 008/11 (Subject heading system/thesaurus) contains code z (Other). Code from: Subject Heading and Term Source Codes, or from specialized subject term lists indicated in the introduction to Subject Heading and Term Source Codes, such as the Genre/Form Code and Term Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 006 file: www.loc.gov/marc/bibliographic/concise/bd006.html --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008x.html --- category: biblio tag: 040 file: www.loc.gov/marc/bibliographic/concise/bd040.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_040_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_040_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_040_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_040_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'a', 'Original cataloging agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'b', 'Language of cataloging (NR) MARC code for the language of cataloging in the record. Code from: MARC Code List for Languages.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'c', 'Transcribing agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'd', 'Modifying agency (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'e', 'Description conventions (R) Code from: Description Convention Source Codes.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 040 file: www.loc.gov/marc/bibliographic/concise/bd040.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_040_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_040_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_040_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_040_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'a', 'Original cataloging agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'b', 'Language of cataloging (NR) MARC code for the language of cataloging in the record. Code from: MARC Code List for Languages.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'c', 'Transcribing agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'd', 'Modifying agency (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'e', 'Description conventions (R) Code from: Description Convention Source Codes.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 588 file: www.loc.gov/marc/bibliographic/concise/bd588.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_588_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_588_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_588_ind_1', '0', 'Source of description', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_588_ind_1', '1', 'Latest issue consulted', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_588_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_588_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '588', 'a', 'Source of description note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 884 file: www.loc.gov/marc/authority/concise/ad884.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_884_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_884_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_884_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_884_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '884', 'a', 'Conversion process (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008b.html - - UPDATE config.record_attr_definition - SET description = 'Illustrations' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Target audience' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 22 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 23 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Nature of contents' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 24 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Government publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 28 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Conference publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 29 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Festschrift' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 30 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Index' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 31 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 32 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Literary form' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 33 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Biography' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 34 AND rec_type IN ('BKS') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 18, '#', 'No illustrations', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'a', 'Illustrations', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'b', 'Maps', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'c', 'Portraits', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'd', 'Charts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'e', 'Plans', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'f', 'Plates', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'g', 'Music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'h', 'Facsimiles', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'i', 'Coats of arms', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'j', 'Genealogical tables', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'k', 'Forms', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'l', 'Samples', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'm', 'Phonodisc, phonowire, etc.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'o', 'Photographs', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'p', 'Illuminations', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '#', 'Unknown or not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'a', 'Preschool', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'b', 'Primary', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'c', 'Pre-adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'd', 'Adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'e', 'Adult', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'f', 'Specialized', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'g', 'General', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'j', 'Juvenile', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '#', 'None of the following', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'a', 'Microfilm', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'b', 'Microfiche', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'c', 'Microopaque', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'd', 'Large print', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'f', 'Braille', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'r', 'Regular print reproduction', 'Eye-readable print, such as a photocopy.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 's', 'Electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '#', 'No specified nature of contents', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'a', 'Abstracts/summaries', 'Abstracts or summaries of other publications. - Not used when a publication includes an - abstract or summary of its own content. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'b', 'Bibliographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'c', 'Catalogs', 'Also includes lists of collectible objects, - such as stamps and coins, or trade catalogs, - etc. For catalogs of books, sound recordings, - or motion pictures, code b (Bibliographies), - code k (Discographies), or code q - (Filmographies), are given with code c. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'd', 'Dictionaries', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'e', 'Encyclopedias', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'f', 'Handbooks', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'g', 'Legal articles', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'i', 'Indexes', 'Index to bibliographical material - other than itself. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'j', 'Patent document', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'k', 'Discographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'l', 'Legislation', 'Full or partial texts of enactments of - legislative bodies, published either in - statute or in code form, or texts of rules and - regulations issued by executive or - administrative agencies. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'm', 'Theses', 'Thesis, dissertation, or work identified as - having been created to satisfy the - requirements for an academic certification or - degree. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'n', 'Surveys of literature in a subject area', 'Composed entirely of authored surveys that - summarize what has been published about a - subject. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'o', 'Reviews', 'Devoted entirely to critical reviews of - published or performed works (e.g., books, - films, sound recordings, theater). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'p', 'Programmed texts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'q', 'Filmographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'r', 'Directories', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 's', 'Statistics', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 't', 'Technical reports', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'u', 'Standards/specifications', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'v', 'Legal cases and case notes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'w', 'Law reports and digests', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'y', 'Yearbooks', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'z', 'Treaties', 'Treaty or accord negotiated between two or - more parties to settle a disagreement, - establish a relationship, grant rights, - etc. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '2', 'Offprints', 'Publication that originally was published as - an article in a monograph or a serial and that - is also issued separately and independently. - Includes preprints and postprints. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '5', 'Calendars', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '6', 'Comics/graphic novels', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '#', 'Not a government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'a', 'Autonomous or semi-autonomous component', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'c', 'Multilocal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'f', 'Federal/national', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'i', 'International intergovernmental', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'l', 'Local', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'm', 'Multistate', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'o', 'Government publication-level undetermined', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 's', 'State, provincial, territorial, dependent, - etc.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'u', 'Unknown if item is government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '0', 'Not a conference publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '1', 'Conference publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, '0', 'Not a festschrift', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, '1', 'Festschrift', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '0', 'No index', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '1', 'Index present', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '0', 'Not fiction (not further specified)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '1', 'Fiction (not further specified)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'd', 'Dramas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'e', 'Essays', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'f', 'Novels', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'h', 'Humor, satires, etc.', 'Humorous work, satire, or of similar literary - form. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'i', 'Letters', 'Single letter or collection of - correspondence. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'j', 'Short stories', 'Short story or collection of short - stories. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'm', 'Mixed forms', 'Represents a variety of literary forms (e.g., - poetry and short stories). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'p', 'Poetry', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 's', 'Speeches', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '#', 'No biographical material', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'a', 'Autobiography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'b', 'Individual biography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'c', 'Collective biography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'd', 'Contains biographical information', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008c.html - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Target audience' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 22 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 23 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 24 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of computer file' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 26 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 27 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Government publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 28 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 29 AND rec_type IN ('COM') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 22, '#', 'Unknown or not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'a', 'Preschool', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'b', 'Primary', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'c', 'Pre-adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'd', 'Adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'e', 'Adult', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'f', 'Specialized', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'g', 'General', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'j', 'Juvenile', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '#', 'Unknown or not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'a', 'Numeric data', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'b', 'Computer program', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'c', 'Representational', 'Pictorial or graphic information that can be manipulated in conjunction with - other types of files to produce graphic patterns that can be used to interpret - and give meaning to the information. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'd', 'Document', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'e', 'Bibliographic data', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'f', 'Font', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'g', 'Game', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'h', 'Sound', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'i', 'Interactive multimedia', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'j', 'Online system or service', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'm', 'Combination', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '#', 'Not a government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'a', 'Autonomous or semi-autonomous component', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'c', 'Multilocal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'f', 'Federal/national', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'i', 'International intergovernmental', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'l', 'Local', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'm', 'Multistate', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'o', 'Government publication-level undetermined', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 's', 'State, provincial, territorial, dependent, etc.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'u', 'Unknown if item is government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008p.html - - UPDATE config.record_attr_definition - SET description = 'Relief' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Projection' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 22 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 24 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of cartographic material' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 25 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 26 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Government publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 28 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 29 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 30 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Index' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 31 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 32 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Special format characteristics' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 33 AND rec_type IN ('MAP') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 18, '#', 'No relief shown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'a', 'Contours', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'b', 'Shading', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'c', 'Gradient and bathymetric tints', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'd', 'Hachures', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'e', 'Bathymetry/soundings', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'f', 'Form lines', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'g', 'Spot heights', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'i', 'Pictorially', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'j', 'Land forms', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'k', 'Bathymetry/isolines', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'm', 'Rock drawings', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '||||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '##', 'Projection not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'aa', 'Aitoff', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ab', 'Gnomic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ac', 'Lambert''s azimuthal equal area', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ad', 'Orthographic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ae', 'Azimuthal equidistant', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'af', 'Stereographic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ag', 'General vertical near-sided', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'am', 'Modified stereographic for Alaska', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'an', 'Chamberlin trimetric', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ap', 'Polar stereographic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'au', 'Azimuthal, specific type unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'az', 'Azimuthal, other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ba', 'Gall', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bb', 'Goode''s homolographic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bc', 'Lambert''s cylindrical equal area', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bd', 'Mercator', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'be', 'Miller', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bf', 'Mollweide', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bg', 'Sinusoidal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bh', 'Transverse Mercator', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bi', 'Gauss-Kruger', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bj', 'Equirectangular', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bk', 'Krovak', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bl', 'Cassini-Soldner', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bo', 'Oblique Mercator', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'br', 'Robinson', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bs', 'Space oblique Mercator', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bu', 'Cylindrical, specific type unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bz', 'Cylindrical, other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ca', 'Albers equal area', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'cb', 'Bonne', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'cc', 'Lambert''s conformal conic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ce', 'Equidistant conic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'cp', 'Polyconic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'cu', 'Conic, specific type unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'cz', 'Conic, other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'da', 'Armadillo', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'db', 'Butterfly', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'dc', 'Eckert', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'dd', 'Goode''s homolosine', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'de', 'Miller''s bipolar oblique conformal conic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'df', 'Van Der Grinten', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'dg', 'Dimaxion', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'dh', 'Cordiform', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'dl', 'Lambert conformal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'zz', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'a', 'Single map', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'b', 'Map series', 'Number of related but physically separate and bibliographically distinct cartographic - units intended by the producer(s) or issuing body(s) to form a single group. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'c', 'Map serial', 'Issued in successive parts bearing numerical or chronological designations and - intended to be continued indefinitely. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'd', 'Globe', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'e', 'Atlas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'f', 'Separate supplement to another work', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'g', 'Bound as part of another work', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '#', 'Not a government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'a', 'Autonomous or semi-autonomous component', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'c', 'Multilocal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'f', 'Federal/national', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'i', 'International intergovernmental', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'l', 'Local', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'm', 'Multistate', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'o', 'Government publication-level undetermined', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 's', 'State, provincial, territorial, dependent, etc.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'u', 'Unknown if item is government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '#', 'None of the following', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'a', 'Microfilm', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'b', 'Microfiche', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'c', 'Microopaque', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'd', 'Large print', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'f', 'Braille', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'r', 'Regular print reproduction', 'Eye-readable print, such as a photocopy.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 's', 'Electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '0', 'No index', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '1', 'Index present', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '#', 'No specified special format characteristics', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'e', 'Manuscript', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'j', 'Picture card, post card', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'k', 'Calendar', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'l', 'Puzzle', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'n', 'Game', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'o', 'Wall map', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'p', 'Playing cards', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'r', 'Loose-leaf', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '||', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008v.html - - UPDATE config.record_attr_definition - SET description = 'Running time for motion pictures and videorecordings' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 21 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Target audience' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 22 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 23 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Government publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 28 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 29 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 30 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of visual material' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 33 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Technique' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 34 AND rec_type IN ('VIS') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 18, '000', 'Running time exceeds three characters', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '001-999', 'Running time', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'nnn', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '---', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '|||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '#', 'Unknown or not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'a', 'Preschool', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'b', 'Primary', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'c', 'Pre-adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'd', 'Adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'e', 'Adult', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'f', 'Specialized', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'g', 'General', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'j', 'Juvenile', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '#', 'Not a government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'a', 'Autonomous or semi-autonomous component', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'c', 'Multilocal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'f', 'Federal/national', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'i', 'International intergovernmental', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'l', 'Local', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'm', 'Multistate', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'o', 'Government publication-level undetermined', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 's', 'State, provincial, territorial, dependent, etc.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'u', 'Unknown if item is government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '#', 'None of the following', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'a', 'Microfilm', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'b', 'Microfiche', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'c', 'Microopaque', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'd', 'Large print', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'f', 'Braille', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'r', 'Regular print reproduction', 'Eye-readable print, such as a photocopy.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 's', 'Electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'a', 'Art original', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'b', 'Kit', 'Mixture of components from two or more categories, that is, sound recording, - maps, filmstrips, etc., no one of which is the predominant constituent of the - item. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'c', 'Art reproduction', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'd', 'Diorama', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'f', 'Filmstrip', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'g', 'Game', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'i', 'Picture', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'k', 'Graphic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'l', 'Technical drawing', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'm', 'Motion picture', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'n', 'Chart', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'o', 'Flash card', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'p', 'Microscope slide', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'q', 'Model', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'r', 'Realia', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 's', 'Slide', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 't', 'Transparency', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'v', 'Videorecording', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'w', 'Toy', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'a', 'Animation', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'c', 'Animation and live action', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'l', 'Live action', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'n', 'Not applicable', 'Item is not a motion picture or a videorecording.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 088 file: www.loc.gov/marc/bibliographic/concise/bd088.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_088_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_088_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_088_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_088_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '088', 'a', 'Report number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 884 file: www.loc.gov/marc/bibliographic/concise/bd884.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_884_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_884_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_884_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_884_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '884', 'a', 'Conversion process (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007c.html - - UPDATE config.record_attr_definition - SET description = 'Category of material' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 0 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Specific material designation' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 1 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 2 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Color' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 3 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Dimensions' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 4 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Sound' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 5 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Image bit depth' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 6 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'File formats' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 9 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Quality assurance target(s)' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 10 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Antecedent/Source' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 11 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Level of compression' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 12 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Reformatting Quality' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 13 AND rec_type NOT IN ('AUT') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('007', 0, 'c', 'Electronic resource', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'a', 'Tape cartridge', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'b', 'Chip cartridge', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'c', 'Computer optical disc cartridge', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'd', 'Computer disc, type unspecified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'e', 'Computer disc cartridge, type unspecified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'f', 'Tape cassette', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'h', 'Tape reel', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'j', 'Magnetic disk', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'k', 'Computer card', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'm', 'Magneto-optical disc', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'o', 'Optical disc', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'r', 'Remote', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 's', 'Standalone device', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'u', 'Unspecified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'a', 'One color', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'b', 'Black-and-white', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'c', 'Multicolored', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'g', 'Gray scale', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'm', 'Mixed', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'a', '3 1/2 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'e', '12 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'g', '4 3/4 in. or 12 cm.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'i', '1 1/8 x 2 3/8 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'j', '3 7/8 x 2 1/2 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'o', '5 1/4 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'v', '8 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, '#', 'No sound (silent)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'a', 'Sound', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, '001-999', 'Exact bit depth', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'mmm', 'Multiple', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'nnn', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, '---', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, '|||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'a', 'One file format', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'm', 'Multiple file formats', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'a', 'Absent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'p', 'Present', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'a', 'File reproduced from original', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'b', 'File reproduced from microform', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'c', 'File reproduced from an electronic resource', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'd', 'File reproduced from an intermediate (not microform)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'm', 'Mixed', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'a', 'Uncompressed', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'b', 'Lossless', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'd', 'Lossy', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'm', 'Mixed', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'a', 'Access', 'Electronic resource is of a quality that will support current, electronic access to - the original item (reference use), but is not sufficient to serve as a preservation - copy. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'p', 'Preservation', 'Electronic resource was created via reformatting to help preserve the original - item. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'r', 'Replacement', 'Electronic resource is of very high quality and, when printed out, viewed on screen - or played via a listening device could serve as a replacement should the original - be - lost, damaged, or destroyed. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007a.html - - UPDATE config.record_attr_definition - SET description = 'Category of material' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 0 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Specific material designation' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 1 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 2 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Color' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 3 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Physical medium' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 4 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of reproduction' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 5 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Production/reproduction details' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 6 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Positive/negative aspect' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 7 AND rec_type NOT IN ('AUT') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('007', 0, 'a', 'Map', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'd', 'Atlas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'g', 'Diagram', 'Map characterized by simplified, or schematic, representation.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'j', 'Map', 'Two-dimensional map.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'k', 'Profile', 'Scale representation of the intersection of a vertical surface (which may or may not - be a plane) with the surface of the ground or with that of a conceptual - three-dimensional model of phenomena having continuous distribution (e.g., - rainfall). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'q', 'Model', 'Three-dimensional representation of a real object.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'r', 'Remote-sensing image', 'Image produced by a recording device that is not in physical or intimate contact with - the object under study. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 's', 'Section', 'Scaled representation of a vertical surface (commonly a plane) displaying both the - the intersection profile or some conceptual model, and the underlying structures, - e.g., geological section. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'u', 'Unspecified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'y', 'View', 'Perspective representation of the landscape shown as if it were projected onto an - oblique plane. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'a', 'One color', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'c', 'Multicolored', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'a', 'Paper', 'Any kind of cellulose-based paper.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'b', 'Wood', 'Material which is based on wood particles or fibers may or may not be considered - wood. Consider particle board wood.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'c', 'Stone', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'd', 'Metal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'e', 'Synthetic', 'Man-made substances other than textiles, plastic, and vinyl.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'f', 'Skin', 'Excludes leather, parchment, and vellum.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'g', 'Textiles', 'Used for all fabrics, whether made from natural or synthetic fibers.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'i', 'Plastic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'j', 'Glass', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'l', 'Vinyl', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'n', 'Vellum', 'Fine-grained unsplit lambskin, kidskin, or calfskin prepared especially for writing - or drawing on. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'p', 'Plaster', 'Includes mixtures of ground solids and plaster.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'q', 'Flexible base photographic, positive', 'Material is a flexible base photographic medium designed to render a positive - image. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'r', 'Flexible base photographic, negative', 'Material is a flexible base photographic medium designed to render a negative - image. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 's', 'Non-flexible base photographic, positive', 'Material is a non-flexible base photographic medium designed to render a positive - image. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 't', 'Non-flexible base photographic, negative', 'Material is a non-flexible base photographic medium designed to render a negative - image. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'v', 'Leather', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'w', 'Parchment', 'Skin of a sheep or goat prepared for writing on.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'x', 'Not applicable', 'Physical medium is not applicable to remote digital - cartographic resources because it pertains to characteristics - specific to physical aspects of carriers. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'y', 'Other photographic medium', 'Photographic medium other than those covered by one of the more specific codes q, - r, - s, and t. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'f', 'Facsimile', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'a', 'Photocopy, blueline print', 'Has a blueline image on a white background and is reproduced by the whiteprint - process. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'b', 'Photocopy', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'c', 'Photographic pre-production', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'd', 'Film', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'a', 'Positive', 'Polarity is positive, i.e., lines and characters are dark on light background.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'b', 'Negative', 'Polarity is negative, i.e., lines and characters are light on dark background.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'm', 'Mixed polarity', 'Mixture of positive and negative images.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, '|', 'No attempt to code', '', 'biblio'); --- category: authority tag: 050 file: www.loc.gov/marc/authority/concise/ad050.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_050_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_050_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_050_ind_2', BTRIM($label$ - -Second - Source of call number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_050_ind_2', '0', 'Assigned by LC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_050_ind_2', '4', 'Assigned by agency other than LC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '050', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 052 file: www.loc.gov/marc/authority/concise/ad052.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_052_ind_1', BTRIM($label$ - -First - Code source - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_052_ind_1', '#', 'Library of Congress Classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_052_ind_1', '1', 'U.S. Dept. of Defense Classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_052_ind_1', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_052_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_052_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '052', 'a', 'Geographic classification area code (NR) -Four- to six-character numeric or alphanumeric code for the main geographic area - associated with the heading. -Code is derived from the LC class G schedule by dropping the letter G.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 053 file: www.loc.gov/marc/authority/concise/ad053.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_053_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_053_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_053_ind_2', BTRIM($label$ - -Second - Source of classification number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_053_ind_2', '0', 'Assigned by LC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_053_ind_2', '4', 'Assigned by agency other than LC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '053', 'a', 'Classification number element-single number or beginning number of span (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 060 file: www.loc.gov/marc/authority/concise/ad060.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_060_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_060_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_060_ind_2', BTRIM($label$ - -Second - Source of call number - - Whether the source of the call number is the National Library of Medicine or - another organization. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_060_ind_2', '0', 'Assigned by NLM', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_060_ind_2', '4', 'Assigned by agency other than NLM', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '060', 'a', 'Classification number (NR) -Source of the classification number is National Library of Medicine - Classification that is maintained by the NLM. NLM also determines which - Library of Congress Classification schedules are used to augment the - NLM scheme.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 070 file: www.loc.gov/marc/authority/concise/ad070.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_070_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_070_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_070_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_070_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '070', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 075 file: www.loc.gov/marc/authority/concise/ad075.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_075_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_075_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_075_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_075_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '075', 'a', 'Type of entity term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 080 file: www.loc.gov/marc/authority/concise/ad080.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_080_ind_1', BTRIM($label$ - -First - Type of edition - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_080_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_080_ind_1', '0', 'Full', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_080_ind_1', '1', 'Abridged', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_080_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_080_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '080', 'a', 'Universal Decimal Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 087 file: www.loc.gov/marc/authority/concise/ad087.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_087_ind_1', BTRIM($label$ - -First - Number source - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_087_ind_1', '#', 'Source specified in subfield $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_087_ind_1', '0', 'Superintendent of Documents Classification System', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_087_ind_1', '1', 'Government of Canada Publications: Outline of Classification', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_087_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_087_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '087', 'a', 'Classification number element-Single number of beginning number of span (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 673 file: www.loc.gov/marc/authority/concise/ad673.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_673_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_673_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '673', 'a', 'Title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 885 file: www.loc.gov/marc/authority/concise/ad885.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_885_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_885_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_885_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_885_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '885', 'a', 'Matching information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 033 file: www.loc.gov/marc/bibliographic/concise/bd033.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_033_ind_1', BTRIM($label$ - -First - Type of date in subfield $a - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_1', '#', 'No date information', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_1', '0', 'Single date', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_1', '1', 'Multiple single dates', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_1', '2', 'Range of dates', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_033_ind_2', BTRIM($label$ - -Second - Type of event - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_2', '0', 'Capture - Pertains to the recording of sound, the filming of visual images, the making or - producing of an item, or other form of creation of an item.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_2', '1', 'Broadcast - Pertains to the broadcasting (i.e., transmission) or re-broadcasting of sound - or visual images.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_2', '2', 'Finding - Pertains to the finding of a naturally occurring object.', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '033', 'a', 'Formatted date/time (R) -Seventeen characters, recorded in the pattern yyyymmddhhmm+-hmm, that - indicate the actual or approximate date (yyyymmdd)/time (hhmm) - of capture, finding, or broadcast and Time Differential Factor (+-hhmm) - information. A hyphen (-) is used for unknown digits in the year/month/day - segment. Within each segment, the data is right justified and any unused position - contains a zero.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 050 file: www.loc.gov/marc/bibliographic/concise/bd050.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_050_ind_1', BTRIM($label$ - -First - Existence in LC collection - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_050_ind_1', '#', 'No information provided - Used for all call numbers assigned by agencies other than the Library of - Congress.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_050_ind_1', '0', 'Item is in LC - Other agencies should use this value when transcribing from LC cataloging copy - on which the call number is neither enclosed within brackets nor preceded by a - Maltese cross.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_050_ind_1', '1', 'Item is not in LC - Used by other agencies when transcribing from LC copy on which the call number - appears in brackets or is preceded by a Maltese cross. Brackets that - customarily surround call numbers for items not in LC are not carried in the - MARC record; they may be generated for display.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_050_ind_2', BTRIM($label$ - -Second - Source of call number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_050_ind_2', '0', 'Assigned by LC - Used when an institution is transcribing from LC cataloging copy.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_050_ind_2', '4', 'Assigned by agency other than LC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '050', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 052 file: www.loc.gov/marc/bibliographic/concise/bd052.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_052_ind_1', BTRIM($label$ - -First - Code source - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_052_ind_1', '#', 'Library of Congress Classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_052_ind_1', '1', 'U.S. Dept. of Defense Classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_052_ind_1', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_052_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_052_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '052', 'a', 'Geographic classification area code (NR) -Numeric or alphanumeric code that represents the main geographic area covered by an - item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 055 file: www.loc.gov/marc/bibliographic/concise/bd055.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_055_ind_1', BTRIM($label$ - -First - Existence in LAC collection - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_1', '#', 'Information not provided - Used in any record input by an institution other than LAC.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_1', '0', 'Work held by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_1', '1', 'Work not held by LAC', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_055_ind_2', BTRIM($label$ - -Second - Type, completeness, source of class/call number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '0', 'LC-based call number assigned by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '1', 'Complete LC class number assigned by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '2', 'Incomplete LC class number assigned by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '3', 'LC-based call number assigned by the contributing library', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '4', 'Complete LC class number assigned by the contributing library', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '5', 'Incomplete LC class number assigned by the contributing library', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '6', 'Other call number assigned by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '7', 'Other class number assigned by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '8', 'Other call number assigned by the contributing library', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '9', 'Other class number assigned by the contributing library', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '055', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 060 file: www.loc.gov/marc/bibliographic/concise/bd060.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_060_ind_1', BTRIM($label$ - -First - Existence in NLM collection - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_060_ind_1', '#', 'No information provided - Used for call numbers assigned by an organization other than NLM.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_060_ind_1', '0', 'Item is in NLM', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_060_ind_1', '1', 'Item is not in NLM', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_060_ind_2', BTRIM($label$ - -Second - Source of call number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_060_ind_2', '0', 'Assigned by NLM', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_060_ind_2', '4', 'Assigned by agency other than NLM', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '060', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 070 file: www.loc.gov/marc/bibliographic/concise/bd070.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_070_ind_1', BTRIM($label$ - -First - Existence in NAL collection - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_070_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_070_ind_1', '0', 'Item is in NAL', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_070_ind_1', '1', 'Item is not in NAL', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_070_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_070_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '070', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 080 file: www.loc.gov/marc/bibliographic/concise/bd080.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_080_ind_1', BTRIM($label$ - -First - Type of edition - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_080_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_080_ind_1', '0', 'Full', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_080_ind_1', '1', 'Abridged', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_080_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_080_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '080', 'a', 'Universal Decimal Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 085 file: www.loc.gov/marc/bibliographic/concise/bd085.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_085_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_085_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_085_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_085_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '085', 'a', 'Number where instructions are found-single - number or beginning number of span (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 086 file: www.loc.gov/marc/bibliographic/concise/bd086.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_086_ind_1', BTRIM($label$ - -First - Number source - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_086_ind_1', '#', 'Source specified in subfield $2 - Classification number other than the U.S. or Canadian scheme.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_086_ind_1', '0', 'Superintendent of Documents Classification System - Assigned by the U.S Government Printing Office. Supt. of Docs. no.: - may be generated for display.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_086_ind_1', '1', 'Government of Canada Publications: Outline of Classification', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_086_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_086_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '086', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 243 file: www.loc.gov/marc/bibliographic/concise/bd243.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_243_ind_1', BTRIM($label$ - -First - Uniform title printed or displayed - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_1', '0', 'Not printed or displayed', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_1', '1', 'Printed or displayed', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_243_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '243', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 257 file: www.loc.gov/marc/bibliographic/concise/bd257.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_257_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_257_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_257_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_257_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '257', 'a', 'Country of producing entity (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 337 file: www.loc.gov/marc/bibliographic/concise/bd337.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_337_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_337_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_337_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_337_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '337', 'a', 'Media type term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 338 file: www.loc.gov/marc/bibliographic/concise/bd338.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_338_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_338_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_338_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_338_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '338', 'a', 'Carrier type term (R) -Term for the category of carrier used to convey the content of the resource.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 346 file: www.loc.gov/marc/bibliographic/concise/bd346.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_346_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_346_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_346_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_346_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '346', 'a', 'Video format (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 347 file: www.loc.gov/marc/bibliographic/concise/bd347.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_347_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_347_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_347_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_347_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '347', 'a', 'File type (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 567 file: www.loc.gov/marc/bibliographic/concise/bd567.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_567_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_567_ind_1', '#', 'Methodology', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_567_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_567_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_567_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '567', 'a', 'Methodology note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 647 file: www.loc.gov/marc/bibliographic/concise/bd647.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_647_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_647_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '647', 'a', 'Named event (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 654 file: www.loc.gov/marc/bibliographic/concise/bd654.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_654_ind_1', BTRIM($label$ - -First - Level of subject - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_654_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_654_ind_1', '0', 'No level specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_654_ind_1', '1', 'Primary', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_654_ind_1', '2', 'Secondary', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_654_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_654_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '654', 'a', 'Focus term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 656 file: www.loc.gov/marc/bibliographic/concise/bd656.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_656_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_656_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_656_ind_2', BTRIM($label$ - -Second - Source of term - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_656_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '656', 'a', 'Occupation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 657 file: www.loc.gov/marc/bibliographic/concise/bd657.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_657_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_657_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_657_ind_2', BTRIM($label$ - -Second - Source of term - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_657_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '657', 'a', 'Function (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 662 file: www.loc.gov/marc/bibliographic/concise/bd662.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_662_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_662_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_662_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_662_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '662', 'a', 'Country or larger entity (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 752 file: www.loc.gov/marc/bibliographic/concise/bd752.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_752_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_752_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_752_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_752_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '752', 'a', 'Country or larger entity (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 753 file: www.loc.gov/marc/bibliographic/concise/bd753.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_753_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_753_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_753_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_753_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '753', 'a', 'Make and model of machine (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 754 file: www.loc.gov/marc/bibliographic/concise/bd754.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_754_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_754_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_754_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_754_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '754', 'a', 'Taxonomic name (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 885 file: www.loc.gov/marc/bibliographic/concise/bd885.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_885_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_885_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_885_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_885_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '885', 'a', 'Matching information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 043 file: www.loc.gov/marc/bibliographic/concise/bd043.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_043_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_043_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_043_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_043_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '043', 'a', 'Geographic area code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 345 file: www.loc.gov/marc/bibliographic/concise/bd345.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_345_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_345_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_345_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_345_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '345', 'a', 'Presentation format (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 881 file: www.loc.gov/marc/bibliographic/concise/bd881.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_881_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_881_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_881_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_881_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '881', 'a', 'Manifestation statement, high-level/general (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 856 file: www.loc.gov/marc/authority/concise/ad856.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_856_ind_1', BTRIM($label$ - -First - Access method - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '0', 'Email', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '1', 'FTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '2', 'Remote login (Telnet)', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '3', 'Dial-up', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '4', 'HTTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '7', 'Method specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_856_ind_2', BTRIM($label$ - -Second - Relationship - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '0', 'Resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '1', 'Version of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '2', 'Related resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '3', 'Component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '4', 'Version of component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '856', 'a', 'Host name (R) -Fully qualified domain (host name) of the electronic location. It contains a - network address which is repeated if there is more than one address for the same - host.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 856 file: www.loc.gov/marc/bibliographic/concise/bd856.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_856_ind_1', BTRIM($label$ - -First - Access method - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '0', 'Email', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '1', 'FTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '2', 'Remote login (Telnet)', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '3', 'Dial-up', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '4', 'HTTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '7', 'Method specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_856_ind_2', BTRIM($label$ - -Second - Relationship - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '0', 'Resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '1', 'Version of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '2', 'Related resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '3', 'Component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '4', 'Version of component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '856', 'a', 'Host name (R) -Fully qualified domain (host name) of the electronic location. It contains a - network address which is repeated if there is more than one address for the same - host.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 022 file: www.loc.gov/marc/authority/concise/ad022.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_022_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_022_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_022_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_022_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '022', 'a', 'International Standard Serial Number (NR) -Valid ISSN for the continuing resource. ISSN may be generated for - display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 023 file: www.loc.gov/marc/authority/concise/ad023.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_023_ind_1', BTRIM($label$ - -First - Type of Cluster ISSN - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_023_ind_1', '0', 'ISSN-L', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_023_ind_1', '1', 'ISSN-H', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_023_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_023_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '023', 'a', 'Cluster ISSN (NR) -As designated by the ISSN International Centre, Cluster ISSNs group together resources - - with specific relationships to each other such as medium versions (ISSN-L), and clusters - - such as earlier and later titles (ISSN-H). The appropriate prefix for the ISSN type - - denoted by the first indicator value may be generated for display, for value 0: ISSN-L; - for value 1: ISSN-H.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 371 file: www.loc.gov/marc/authority/concise/ad371.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_371_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_371_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_371_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_371_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '371', 'a', 'Address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 372 file: www.loc.gov/marc/authority/concise/ad372.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_372_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_372_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_372_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_372_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '372', 'a', 'Field of activity (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 374 file: www.loc.gov/marc/authority/concise/ad374.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_374_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_374_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_374_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_374_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '374', 'a', 'Occupation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 376 file: www.loc.gov/marc/authority/concise/ad376.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_376_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_376_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_376_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_376_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '376', 'a', 'Type of family (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 022 file: www.loc.gov/marc/bibliographic/concise/bd022.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_022_ind_1', BTRIM($label$ - -First - Level of international interest - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_022_ind_1', '#', 'No level specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_022_ind_1', '0', 'Continuing resource of international interest', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_022_ind_1', '1', 'Continuing resource not of international interest', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_022_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_022_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '022', 'a', 'International Standard Serial Number (NR) -Valid ISSN for the continuing resource. ISSN may be generated for - display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 023 file: www.loc.gov/marc/bibliographic/concise/bd023.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_023_ind_1', BTRIM($label$ - -First - Type of Cluster ISSN - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_023_ind_1', '0', 'ISSN-L', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_023_ind_1', '1', 'ISSN-H', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_023_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_023_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '023', 'a', 'Cluster ISSN (NR) -As designated by the ISSN International Centre, Cluster ISSNs group together resources - - with specific relationships to each other such as medium versions (ISSN-L), and clusters - - such as earlier and later titles (ISSN-H). The appropriate prefix for the ISSN type - - denoted by the first indicator value may be generated for display, for value 0: ISSN-L; - for value 1: ISSN-H.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 532 file: www.loc.gov/marc/bibliographic/concise/bd532.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_532_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_532_ind_1', '0', 'Accessibility technical details', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_532_ind_1', '1', 'Accessibility features', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_532_ind_1', '2', 'Accessibility deficiencies', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_532_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_532_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_532_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '532', 'a', 'Summary of accessibility (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 024 file: www.loc.gov/marc/authority/concise/ad024.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_024_ind_1', BTRIM($label$ - -First - Type of standard number or code - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_024_ind_1', '7', 'Source specified in subfield $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_024_ind_1', '8', 'Unspecified type of standard number or code', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_024_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_024_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '024', 'a', 'Standard number or code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 034 file: www.loc.gov/marc/authority/concise/ad034.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_034_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_034_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_034_ind_2', BTRIM($label$ - -Second - Type of ring - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_034_ind_2', '#', 'Not applicable', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_034_ind_2', '0', 'Outer ring', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_034_ind_2', '1', 'Exclusion ring', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '034', 'd', 'Coordinates - westernmost longitude (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 043 file: www.loc.gov/marc/authority/concise/ad043.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_043_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_043_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_043_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_043_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '043', 'a', 'Geographic area code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 065 file: www.loc.gov/marc/authority/concise/ad065.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_065_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_065_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_065_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_065_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '065', 'a', 'Classification number element-single number or beginning of span (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 100 file: www.loc.gov/marc/authority/concise/ad100.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_100_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_100_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_100_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_100_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_100_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_100_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '100', 'a', 'Personal name (NR) -Surname and/or forename; letters, initials, abbreviations, phrases, or numbers - used in place of a name; or a family name.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 110 file: www.loc.gov/marc/authority/concise/ad110.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_110_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_110_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_110_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_110_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_110_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_110_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '110', 'a', 'Corporate name or jurisdiction name as entry element (NR) -Name of a corporate body, or the first entity when subordinate units are present; - a jurisdiction name under which a corporate body, city section, or a title of a - work is entered; or a jurisdictional name that is also an ecclesiastical - entity.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 111 file: www.loc.gov/marc/authority/concise/ad111.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_111_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_111_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_111_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_111_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_111_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_111_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '111', 'a', 'Meeting name or jurisdiction name as entry element (NR) -Name of a meeting or a jurisdiction name under which a meeting name is - entered.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 130 file: www.loc.gov/marc/authority/concise/ad130.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_130_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_130_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '130', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 147 file: www.loc.gov/marc/authority/concise/ad147.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_147_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_147_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_147_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_147_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '147', 'a', 'Named event (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 148 file: www.loc.gov/marc/authority/concise/ad148.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_148_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_148_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_148_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_148_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '148', 'a', 'Chronological term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 150 file: www.loc.gov/marc/authority/concise/ad150.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_150_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_150_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_150_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_150_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '150', 'a', 'Topical term or geographic name entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 151 file: www.loc.gov/marc/authority/concise/ad151.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_151_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_151_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_151_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_151_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '151', 'a', 'Geographic name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 155 file: www.loc.gov/marc/authority/concise/ad155.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_155_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_155_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_155_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_155_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '155', 'a', 'Genre/form term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 162 file: www.loc.gov/marc/authority/concise/ad162.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_162_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_162_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_162_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_162_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '162', 'a', 'Medium of performance term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 180 file: www.loc.gov/marc/authority/concise/ad180.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_180_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_180_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_180_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_180_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '180', 'v', 'Form subdivision (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 181 file: www.loc.gov/marc/authority/concise/ad181.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_181_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_181_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_181_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_181_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '181', 'v', 'Form subdivision (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 182 file: www.loc.gov/marc/authority/concise/ad182.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_182_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_182_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_182_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_182_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '182', 'v', 'Form subdivision (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 185 file: www.loc.gov/marc/authority/concise/ad185.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_185_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_185_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_185_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_185_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '185', 'v', 'Form subdivision (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 260 file: www.loc.gov/marc/authority/concise/ad260.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_260_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_260_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_260_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_260_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '260', 'a', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 335 file: www.loc.gov/marc/authority/concise/ad335.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_335_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_335_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_335_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_335_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '335', 'a', 'Extension plan term (NR) -Extension plan of the work being described.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 336 file: www.loc.gov/marc/authority/concise/ad336.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_336_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_336_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_336_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_336_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '336', 'a', 'Content type term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 348 file: www.loc.gov/marc/authority/concise/ad348.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_348_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_348_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_348_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_348_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '348', 'a', 'Format of notated music term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 360 file: www.loc.gov/marc/authority/concise/ad360.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_360_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_360_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_360_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_360_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '360', 'a', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 370 file: www.loc.gov/marc/authority/concise/ad370.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_370_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_370_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_370_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_370_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '370', 'a', 'Place of birth (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 373 file: www.loc.gov/marc/authority/concise/ad373.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_373_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_373_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_373_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_373_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '373', 'a', 'Associated group (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 375 file: www.loc.gov/marc/authority/concise/ad375.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_375_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_375_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_375_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_375_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '375', 'a', 'Gender (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 377 file: www.loc.gov/marc/authority/concise/ad377.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_377_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_377_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_377_ind_2', BTRIM($label$ - -Second - Source of code - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_377_ind_2', '#', 'MARC language code - Code from: MARC Code List - for Languages.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_377_ind_2', '7', 'Source specified in $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '377', 'a', 'Language code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 378 file: www.loc.gov/marc/authority/concise/ad378.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_378_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_378_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_378_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_378_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '378', 'q', 'Fuller form of personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 380 file: www.loc.gov/marc/authority/concise/ad380.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_380_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_380_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_380_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_380_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '380', 'a', 'Form of work (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 381 file: www.loc.gov/marc/authority/concise/ad381.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_381_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_381_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_381_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_381_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '381', 'a', 'Other distinguishing characteristic (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 382 file: www.loc.gov/marc/authority/concise/ad382.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_382_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_382_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_382_ind_1', '0', 'Medium of performance', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_382_ind_1', '1', 'Partial medium of performance', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_382_ind_1', '2', 'Medium of performance of musical content of representative expression', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_382_ind_1', '3', 'Partial medium of performance of musical content of representative expression', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_382_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_382_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '382', 'a', 'Medium of performance (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 383 file: www.loc.gov/marc/authority/concise/ad383.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_383_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_383_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_383_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_383_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '383', 'a', 'Serial number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 384 file: www.loc.gov/marc/authority/concise/ad384.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_384_ind_1', BTRIM($label$ - -First - Key type - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_384_ind_1', '#', 'Relationship to original unknown', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_384_ind_1', '0', 'Original key', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_384_ind_1', '1', 'Transposed key', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_384_ind_1', '2', 'Key of representative expression', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_384_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_384_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '384', 'a', 'Key (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 385 file: www.loc.gov/marc/authority/concise/ad385.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_385_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_385_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_385_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_385_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '385', 'a', 'Audience term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 386 file: www.loc.gov/marc/authority/concise/ad386.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_386_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_386_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_386_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_386_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '386', 'a', 'Creator/contributor term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 387 file: www.loc.gov/marc/authority/concise/ad387.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_387_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_387_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_387_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_387_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '387', 'a', 'Aspect ratio of representative expression (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 388 file: www.loc.gov/marc/authority/concise/ad388.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_388_ind_1', BTRIM($label$ - -First - Type of time period - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_388_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_388_ind_1', '1', 'Creation of work', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_388_ind_1', '2', 'Creation of aggregate work', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_388_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_388_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '388', 'a', 'Time period of creation term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 400 file: www.loc.gov/marc/authority/concise/ad400.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_400_ind_1', BTRIM($label$ - -First - Type of personal name element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_400_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_400_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_400_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_400_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_400_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '400', 'a', 'Personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 410 file: www.loc.gov/marc/authority/concise/ad410.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_410_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_410_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_410_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_410_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_410_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_410_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '410', 'a', 'Corporate name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 411 file: www.loc.gov/marc/authority/concise/ad411.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_411_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_411_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_411_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_411_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_411_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_411_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '411', 'a', 'Meeting name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 430 file: www.loc.gov/marc/authority/concise/ad430.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_430_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_430_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '430', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 447 file: www.loc.gov/marc/authority/concise/ad447.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_447_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_447_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_447_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_447_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '447', 'a', 'Named event (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 448 file: www.loc.gov/marc/authority/concise/ad448.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_448_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_448_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_448_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_448_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '448', 'a', 'Chronological term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 450 file: www.loc.gov/marc/authority/concise/ad450.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_450_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_450_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_450_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_450_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '450', 'a', 'Topical term or geographic name entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 451 file: www.loc.gov/marc/authority/concise/ad451.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_451_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_451_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_451_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_451_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '451', 'a', 'Geographic name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 455 file: www.loc.gov/marc/authority/concise/ad455.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_455_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_455_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_455_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_455_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '455', 'a', 'Genre/form term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 462 file: www.loc.gov/marc/authority/concise/ad462.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_462_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_462_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_462_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_462_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '462', 'a', 'Medium of performance term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 480 file: www.loc.gov/marc/authority/concise/ad480.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_480_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_480_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_480_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_480_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '480', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 481 file: www.loc.gov/marc/authority/concise/ad481.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_481_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_481_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_481_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_481_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '481', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 482 file: www.loc.gov/marc/authority/concise/ad482.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_482_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_482_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_482_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_482_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '482', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 485 file: www.loc.gov/marc/authority/concise/ad485.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_485_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_485_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_485_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_485_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '485', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 500 file: www.loc.gov/marc/authority/concise/ad500.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_500_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_500_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_500_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_500_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_500_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_500_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '500', 'a', 'Personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 510 file: www.loc.gov/marc/authority/concise/ad510.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_510_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_510_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_510_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_510_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_510_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_510_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '510', 'a', 'Corporate name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 511 file: www.loc.gov/marc/authority/concise/ad511.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_511_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_511_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_511_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_511_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_511_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_511_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '511', 'a', 'Meeting name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 530 file: www.loc.gov/marc/authority/concise/ad530.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_530_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_530_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '530', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 547 file: www.loc.gov/marc/authority/concise/ad547.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_547_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_547_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_547_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_547_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '547', 'a', 'Named event (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 548 file: www.loc.gov/marc/authority/concise/ad548.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_548_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_548_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_548_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_548_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '548', 'a', 'Chronological term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 550 file: www.loc.gov/marc/authority/concise/ad550.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_550_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_550_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_550_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_550_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '550', 'a', 'Topical term or geographic name entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 551 file: www.loc.gov/marc/authority/concise/ad551.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_551_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_551_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_551_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_551_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '551', 'a', 'Geographic name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 555 file: www.loc.gov/marc/authority/concise/ad555.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_555_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_555_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_555_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_555_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '555', 'a', 'Genre/form term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 562 file: www.loc.gov/marc/authority/concise/ad562.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_562_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_562_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_562_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_562_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '562', 'a', 'Medium of performance term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 580 file: www.loc.gov/marc/authority/concise/ad580.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_580_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_580_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_580_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_580_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '580', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 581 file: www.loc.gov/marc/authority/concise/ad581.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_581_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_581_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_581_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_581_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '581', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 582 file: www.loc.gov/marc/authority/concise/ad582.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_582_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_582_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_582_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_582_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '582', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 585 file: www.loc.gov/marc/authority/concise/ad585.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_585_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_585_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_585_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_585_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '585', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 670 file: www.loc.gov/marc/authority/concise/ad670.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_670_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_670_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_670_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_670_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '670', 'a', 'Source citation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 672 file: www.loc.gov/marc/authority/concise/ad672.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_672_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_672_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '672', 'a', 'Title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 675 file: www.loc.gov/marc/authority/concise/ad675.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_675_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_675_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_675_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_675_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '675', 'a', 'Source citation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 677 file: www.loc.gov/marc/authority/concise/ad677.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_677_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_677_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_677_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_677_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '677', 'a', 'Definition (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 678 file: www.loc.gov/marc/authority/concise/ad678.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_678_ind_1', BTRIM($label$ - -First - Type of data - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_678_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_678_ind_1', '0', 'Biographical sketch', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_678_ind_1', '1', 'Administrative history', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_678_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_678_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '678', 'a', 'Biographical or historical data (R) -Brief statement providing biographical information about an individual or family. - It may - also contain historical and administrative information relating to an - organization.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 680 file: www.loc.gov/marc/authority/concise/ad680.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_680_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_680_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_680_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_680_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '680', 'a', 'Heading or subdivision term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 700 file: www.loc.gov/marc/authority/concise/ad700.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_700_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_700_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '0', ' - Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '2', ' - Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '5', ' - Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '6', ' - Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '700', 'a', 'Personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 710 file: www.loc.gov/marc/authority/concise/ad710.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_710_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_710_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '0', ' - Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '2', ' - Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '5', ' - Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '6', ' - Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '710', 'a', 'Corporate name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 711 file: www.loc.gov/marc/authority/concise/ad711.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_711_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_711_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '0', ' - Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '2', ' - Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '5', ' - Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '6', ' - Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '711', 'a', 'Meeting name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 730 file: www.loc.gov/marc/authority/concise/ad730.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_730_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_730_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '0', ' - Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '2', ' - Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '5', ' - Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '6', ' - Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '730', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 747 file: www.loc.gov/marc/authority/concise/ad747.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_747_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_747_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '747', 'a', 'Named event (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 748 file: www.loc.gov/marc/authority/concise/ad748.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_748_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_748_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '748', 'a', 'Chronological term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 750 file: www.loc.gov/marc/authority/concise/ad750.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_750_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_750_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '750', 'a', 'Topical term or geographic name entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 751 file: www.loc.gov/marc/authority/concise/ad751.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_751_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_751_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '751', 'a', 'Geographic name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 755 file: www.loc.gov/marc/authority/concise/ad755.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_755_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_755_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '755', 'a', 'Genre/form term as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 762 file: www.loc.gov/marc/authority/concise/ad762.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_762_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_762_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '762', 'a', 'Medium of performance term as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 780 file: www.loc.gov/marc/authority/concise/ad780.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_780_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_780_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '780', 'i', 'Relationship information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 781 file: www.loc.gov/marc/authority/concise/ad781.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_781_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_781_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '781', 'i', 'Relationship information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 782 file: www.loc.gov/marc/authority/concise/ad782.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_782_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_782_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '782', 'i', 'Relationship information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 785 file: www.loc.gov/marc/authority/concise/ad785.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_785_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_785_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '785', 'i', 'Relationship information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 788 file: www.loc.gov/marc/authority/concise/ad788.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_788_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_788_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '788', 'a', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 082 file: www.loc.gov/marc/bibliographic/concise/bd082.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_082_ind_1', BTRIM($label$ - -First - Type of edition - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_082_ind_1', '0', 'Full edition', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_082_ind_1', '1', 'Abridged edition', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_082_ind_1', '7', 'Other edition specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_082_ind_2', BTRIM($label$ - -Second - Source of classification number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_082_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_082_ind_2', '0', 'Assigned by LC - May be used by organizations transcribing - from LC copy.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_082_ind_2', '4', 'Assigned by agency other than LC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '082', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 083 file: www.loc.gov/marc/bibliographic/concise/bd083.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_083_ind_1', BTRIM($label$ - -First - Type of edition - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_083_ind_1', '0', 'Full edition', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_083_ind_1', '1', 'Abridged edition', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_083_ind_1', '7', 'Other edition specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_083_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_083_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '083', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 084 file: www.loc.gov/marc/bibliographic/concise/bd084.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_084_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_084_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_084_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_084_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '084', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 100 file: www.loc.gov/marc/bibliographic/concise/bd100.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_100_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_100_ind_1', '0', 'Forename - Forename or a name consisting of words, initials, letters, etc., that are - formatted in direct order.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_100_ind_1', '1', 'Surname - Single or multiple surname formatted in inverted order or a single name without - forenames that is known to be a surname.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_100_ind_1', '3', 'Family name - Name represents a family, clan, dynasty, house, or other such group and may be - formatted in direct or inverted order.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_100_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_100_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '100', 'a', 'Personal name (NR) -Surname and/or forename; letters, initials, abbreviations, phrases, or numbers - used in place of a name; or a family name.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 110 file: www.loc.gov/marc/bibliographic/concise/bd110.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_110_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_110_ind_1', '0', 'Inverted name - Corporate name begins with a personal name in inverted order.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_110_ind_1', '1', 'Jurisdiction name - Name of a jurisdiction that is also an ecclesiastical entity or is a - jurisdiction name under which a corporate name or a title of a work is - entered.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_110_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_110_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_110_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '110', 'a', 'Corporate name or jurisdiction name as entry element (NR) -Name of a corporate body or the first entity when subordinate units are present; a - jurisdiction name under which a corporate body, city section, or a title of a work - is entered; or a jurisdiction name that is also an ecclesiastical entity.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 111 file: www.loc.gov/marc/bibliographic/concise/bd111.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_111_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_111_ind_1', '0', 'Inverted name - Meeting name begins with a personal name in inverted order.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_111_ind_1', '1', 'Jurisdiction name - Jurisdiction name under which a meeting name is entered.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_111_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_111_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_111_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '111', 'a', 'Meeting name or jurisdiction name as entry element (NR) -Name of a meeting, or the first entity when subordinate units are present; or a - jurisdiction name under which a meeting name is entered.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 130 file: www.loc.gov/marc/bibliographic/concise/bd130.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_130_ind_1', BTRIM($label$ - -First - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_130_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '130', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 210 file: www.loc.gov/marc/bibliographic/concise/bd210.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_210_ind_1', BTRIM($label$ - -First - Title added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_210_ind_1', '0', 'No added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_210_ind_1', '1', 'Added entry', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_210_ind_2', BTRIM($label$ - -Second - Type - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_210_ind_2', '#', 'Abbreviated key title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_210_ind_2', '0', 'Other abbreviated title', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '210', 'a', 'Abbreviated title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 240 file: www.loc.gov/marc/bibliographic/concise/bd240.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_240_ind_1', BTRIM($label$ - -First - Uniform title printed or displayed - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_1', '0', 'Not printed or displayed', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_1', '1', 'Printed or displayed', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_240_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '240', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 245 file: www.loc.gov/marc/bibliographic/concise/bd245.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_245_ind_1', BTRIM($label$ - -First - Title added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_1', '0', 'No added entry - No title added entry is made, either because no title added entry is desired or - because the title added entry is not traced the same as the title in field - 245.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_1', '1', 'Added entry - Desired title added entry is the same as the title in field 245.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_245_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '245', 'a', 'Title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 246 file: www.loc.gov/marc/bibliographic/concise/bd246.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_246_ind_1', BTRIM($label$ - -First - Note/added entry controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_1', '0', 'Note, no added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_1', '1', 'Note, added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_1', '2', 'No note, no added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_1', '3', 'No note, added entry', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_246_ind_2', BTRIM($label$ - -Second - Type of title - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '#', 'No type specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '0', 'Portion of title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '1', 'Parallel title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '2', 'Distinctive title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '3', 'Other title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '4', 'Cover title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '5', 'Added title page title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '6', 'Caption title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '7', 'Running title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '8', 'Spine title', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '246', 'a', 'Title proper/short title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 247 file: www.loc.gov/marc/bibliographic/concise/bd247.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_247_ind_1', BTRIM($label$ - -First - Title added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_247_ind_1', '0', 'No added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_247_ind_1', '1', 'Added entry', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_247_ind_2', BTRIM($label$ - -Second - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_247_ind_2', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_247_ind_2', '1', 'Do not display note', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '247', 'a', 'Title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 250 file: www.loc.gov/marc/bibliographic/concise/bd250.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_250_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_250_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_250_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_250_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '250', 'a', 'Edition statement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 255 file: www.loc.gov/marc/bibliographic/concise/bd255.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_255_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_255_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_255_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_255_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '255', 'a', 'Statement of scale (NR) -Entire scale statement including any equivalency statements, vertical scales or - vertical exaggeration statements for relief models and other three-dimensional - items.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 256 file: www.loc.gov/marc/bibliographic/concise/bd256.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_256_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_256_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_256_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_256_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '256', 'a', 'Computer file characteristics (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 264 file: www.loc.gov/marc/bibliographic/concise/bd264.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_264_ind_1', BTRIM($label$ - -First - Sequence of statements - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_1', '#', 'Not applicable/No information provided/Earliest', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_1', '2', 'Intervening', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_1', '3', 'Current/Latest', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_264_ind_2', BTRIM($label$ - -Second - Function of entity - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_2', '0', 'Production', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_2', '1', 'Publication', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_2', '2', 'Distribution', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_2', '3', 'Manufacture', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_2', '4', 'Copyright notice date', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '264', 'a', 'Place of production, publication, distribution, manufacture (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 300 file: www.loc.gov/marc/bibliographic/concise/bd300.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_300_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_300_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_300_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_300_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '300', 'a', 'Extent (R) -Number of physical pages, volumes, cassettes, total playing time, etc., of each - type of unit.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 335 file: www.loc.gov/marc/bibliographic/concise/bd335.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_335_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_335_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_335_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_335_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '335', 'a', 'Extension plan term (NR) -Extension plan of the work being described.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 336 file: www.loc.gov/marc/bibliographic/concise/bd336.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_336_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_336_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_336_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_336_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '336', 'a', 'Content type term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 340 file: www.loc.gov/marc/bibliographic/concise/bd340.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_340_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_340_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_340_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_340_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '340', 'a', 'Material base and configuration (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 348 file: www.loc.gov/marc/bibliographic/concise/bd348.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_348_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_348_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_348_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_348_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '348', 'a', 'Format of notated music term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 370 file: www.loc.gov/marc/bibliographic/concise/bd370.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_370_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_370_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_370_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_370_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '370', 'c', 'Associated country (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 377 file: www.loc.gov/marc/bibliographic/concise/bd377.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_377_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_377_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_377_ind_2', BTRIM($label$ - -Second - Source of code - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_377_ind_2', '#', 'MARC language code - Code from: MARC Code List - for Languages.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_377_ind_2', '7', 'Source specified in $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '377', 'a', 'Language code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 380 file: www.loc.gov/marc/bibliographic/concise/bd380.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_380_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_380_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_380_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_380_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '380', 'a', 'Form of work (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 381 file: www.loc.gov/marc/bibliographic/concise/bd381.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_381_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_381_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_381_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_381_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '381', 'a', 'Other distinguishing characteristic (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 382 file: www.loc.gov/marc/bibliographic/concise/bd382.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_382_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_1', '0', 'Medium of performance', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_1', '1', 'Partial medium of performance', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_1', '2', 'Medium of performance of musical content of representative expression', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_1', '3', 'Partial medium of performance of musical content of representative expression', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_382_ind_2', BTRIM($label$ - -Second - Access control - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_2', '0', 'Not intended for access', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_2', '1', 'Intended for access', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '382', 'a', 'Medium of performance (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 383 file: www.loc.gov/marc/bibliographic/concise/bd383.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_383_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_383_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_383_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_383_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '383', 'a', 'Serial number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 384 file: www.loc.gov/marc/bibliographic/concise/bd384.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_384_ind_1', BTRIM($label$ - -First - Key type - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_384_ind_1', '#', 'Relationship to original unknown', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_384_ind_1', '0', 'Original key', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_384_ind_1', '1', 'Transposed key', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_384_ind_1', '2', 'Key of representative expression', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_384_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_384_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '384', 'a', 'Key (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 385 file: www.loc.gov/marc/bibliographic/concise/bd385.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_385_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_385_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_385_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_385_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '385', 'a', 'Audience term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 386 file: www.loc.gov/marc/bibliographic/concise/bd386.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_386_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_386_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_386_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_386_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '386', 'a', 'Creator/contributor term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 387 file: www.loc.gov/marc/bibliographic/concise/bd387.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_387_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_387_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_387_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_387_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '387', 'a', 'Aspect ratio of representative expression (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 388 file: www.loc.gov/marc/bibliographic/concise/bd388.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_388_ind_1', BTRIM($label$ - -First - Type of time period - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_388_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_388_ind_1', '1', 'Creation of work', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_388_ind_1', '2', 'Creation of aggregate work', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_388_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_388_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '388', 'a', 'Time period of creation term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 490 file: www.loc.gov/marc/bibliographic/concise/bd490.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_490_ind_1', BTRIM($label$ - -First - Series tracing policy - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_490_ind_1', '0', 'Series not traced', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_490_ind_1', '1', 'Series traced', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_490_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_490_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '490', 'a', 'Series statement (R) -Series title that may also contain a statement - of responsibility or other title information.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 500 file: www.loc.gov/marc/bibliographic/concise/bd500.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_500_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_500_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_500_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_500_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '500', 'a', 'General note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 501 file: www.loc.gov/marc/bibliographic/concise/bd501.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_501_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_501_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_501_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_501_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '501', 'a', 'With note (NR) -Entire text of the note, including the introductory phrase (e.g., With:, - On reel with:, Issued with, etc.).','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 502 file: www.loc.gov/marc/bibliographic/concise/bd502.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_502_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_502_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_502_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_502_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '502', 'a', 'Dissertation note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 505 file: www.loc.gov/marc/bibliographic/concise/bd505.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_505_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_505_ind_1', '0', 'Contents', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_505_ind_1', '1', 'Incomplete contents', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_505_ind_1', '2', 'Partial contents', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_505_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_505_ind_2', BTRIM($label$ - -Second - Level of content designation - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_505_ind_2', '#', 'Basic', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_505_ind_2', '0', 'Enhanced', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '505', 'a', 'Formatted contents note (NR) -Format of the note is determined by the relevant cataloging rules.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 507 file: www.loc.gov/marc/bibliographic/concise/bd507.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_507_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_507_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_507_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_507_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '507', 'a', 'Representative fraction of scale note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 508 file: www.loc.gov/marc/bibliographic/concise/bd508.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_508_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_508_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_508_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_508_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '508', 'a', 'Creation/production credits note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 510 file: www.loc.gov/marc/bibliographic/concise/bd510.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_510_ind_1', BTRIM($label$ - -First - Coverage/location in source - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_510_ind_1', '0', 'Coverage unknown', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_510_ind_1', '1', 'Coverage complete', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_510_ind_1', '2', 'Coverage is selective', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_510_ind_1', '3', 'Location in source not given', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_510_ind_1', '4', 'Location in source given', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_510_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_510_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '510', 'a', 'Name of source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 515 file: www.loc.gov/marc/bibliographic/concise/bd515.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_515_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_515_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_515_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_515_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '515', 'a', 'Numbering peculiarities note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 518 file: www.loc.gov/marc/bibliographic/concise/bd518.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_518_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_518_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_518_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_518_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '518', 'a', 'Date/time and place of an event note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 520 file: www.loc.gov/marc/bibliographic/concise/bd520.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_520_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '#', 'Summary', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '0', 'Subject', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '1', 'Review', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '2', 'Scope and content', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '3', 'Abstract', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '4', 'Content advice', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_520_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '520', 'a', 'Summary, etc. (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 533 file: www.loc.gov/marc/bibliographic/concise/bd533.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_533_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_533_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_533_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_533_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '533', 'a', 'Type of reproduction (NR) -Introductory phrase that identifies the type of reproduction being described.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 546 file: www.loc.gov/marc/bibliographic/concise/bd546.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_546_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_546_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_546_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_546_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '546', 'a', 'Language note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 550 file: www.loc.gov/marc/bibliographic/concise/bd550.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_550_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_550_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_550_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_550_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '550', 'a', 'Issuing body note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 555 file: www.loc.gov/marc/bibliographic/concise/bd555.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_555_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_555_ind_1', '#', 'Indexes - Used to generate the display constant Indexes:.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_555_ind_1', '0', 'Finding aids - Used to generate the display constant Finding aids:.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_555_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_555_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_555_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '555', 'a', 'Cumulative index/finding aids note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 583 file: www.loc.gov/marc/bibliographic/concise/bd583.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_583_ind_1', BTRIM($label$ - -First - Privacy - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_583_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_583_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_583_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_583_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_583_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '583', 'a', 'Action (NR) -Standardized terminology descriptive of the action.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 600 file: www.loc.gov/marc/bibliographic/concise/bd600.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_600_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_600_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '600', 'a', 'Personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 610 file: www.loc.gov/marc/bibliographic/concise/bd610.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_610_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_610_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '610', 'a', 'Corporate name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 611 file: www.loc.gov/marc/bibliographic/concise/bd611.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_611_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_611_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '611', 'a', 'Meeting name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 630 file: www.loc.gov/marc/bibliographic/concise/bd630.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_630_ind_1', BTRIM($label$ - -First - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_630_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '630', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 648 file: www.loc.gov/marc/bibliographic/concise/bd648.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_648_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_648_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '648', 'a', 'Chronological term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 650 file: www.loc.gov/marc/bibliographic/concise/bd650.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_650_ind_1', BTRIM($label$ - -First - Level of subject - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_1', '0', 'No level specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_1', '1', 'Primary', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_1', '2', 'Secondary', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_650_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '650', 'a', 'Topical term or geographic name entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 651 file: www.loc.gov/marc/bibliographic/concise/bd651.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_651_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_651_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '651', 'a', 'Geographic name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 655 file: www.loc.gov/marc/bibliographic/concise/bd655.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_655_ind_1', BTRIM($label$ - -First - Type of heading - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_1', '#', 'Basic', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_1', '0', 'Faceted', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_655_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '655', 'a', 'Genre/form data or focus term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 700 file: www.loc.gov/marc/bibliographic/concise/bd700.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_700_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_700_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_700_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_700_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_700_ind_2', BTRIM($label$ - -Second - Type of added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_700_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_700_ind_2', '2', 'Analytical entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '700', 'a', 'Personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 710 file: www.loc.gov/marc/bibliographic/concise/bd710.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_710_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_710_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_710_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_710_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_710_ind_2', BTRIM($label$ - -Second - Type of added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_710_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_710_ind_2', '2', 'Analytical entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '710', 'a', 'Corporate name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 711 file: www.loc.gov/marc/bibliographic/concise/bd711.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_711_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_711_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_711_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_711_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_711_ind_2', BTRIM($label$ - -Second - Type of added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_711_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_711_ind_2', '2', 'Analytical entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '711', 'a', 'Meeting name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 751 file: www.loc.gov/marc/bibliographic/concise/bd751.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_751_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_751_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_751_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_751_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '751', 'a', 'Geographic name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 760 file: www.loc.gov/marc/bibliographic/concise/bd760.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_760_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_760_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_760_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_760_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_760_ind_2', '#', 'Main series', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_760_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '760', 'a', 'Main entry heading (NR) -Main entry heading from the 100 (Main Entry Personal Name), 110 (Main Entry Corporate - Name) or 111 (Main Entry Meeting Name) field of the related record.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 762 file: www.loc.gov/marc/bibliographic/concise/bd762.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_762_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_762_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_762_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_762_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_762_ind_2', '#', 'Has subseries', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_762_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '762', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 765 file: www.loc.gov/marc/bibliographic/concise/bd765.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_765_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_765_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_765_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_765_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_765_ind_2', '#', 'Translation of', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_765_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '765', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 767 file: www.loc.gov/marc/bibliographic/concise/bd767.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_767_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_767_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_767_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_767_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_767_ind_2', '#', 'Translated as', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_767_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '767', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 770 file: www.loc.gov/marc/bibliographic/concise/bd770.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_770_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_770_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_770_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_770_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_770_ind_2', '#', 'Has supplement', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_770_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '770', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 772 file: www.loc.gov/marc/bibliographic/concise/bd772.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_772_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_772_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_772_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_772_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_772_ind_2', '#', 'Supplement to', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_772_ind_2', '0', 'Parent', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_772_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '772', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 773 file: www.loc.gov/marc/bibliographic/concise/bd773.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_773_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_773_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_773_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_773_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_773_ind_2', '#', 'In', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_773_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '773', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 774 file: www.loc.gov/marc/bibliographic/concise/bd774.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_774_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_774_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_774_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_774_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_774_ind_2', '#', 'Constituent unit', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_774_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '774', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 775 file: www.loc.gov/marc/bibliographic/concise/bd775.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_775_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_775_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_775_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_775_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_775_ind_2', '#', 'Other edition available', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_775_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '775', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 776 file: www.loc.gov/marc/bibliographic/concise/bd776.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_776_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_776_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_776_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_776_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_776_ind_2', '#', 'Available in another form', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_776_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '776', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 777 file: www.loc.gov/marc/bibliographic/concise/bd777.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_777_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_777_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_777_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_777_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_777_ind_2', '#', 'Issued with', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_777_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '777', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 780 file: www.loc.gov/marc/bibliographic/concise/bd780.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_780_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_780_ind_2', BTRIM($label$ - -Second - Type of relationship - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '0', 'Continues', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '1', 'Continues in part', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '2', 'Supersedes', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '3', 'Supersedes in part', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '4', 'Formed by the union of ... and ...', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '5', 'Absorbed', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '6', 'Absorbed in part', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '7', 'Separated from', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '780', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 785 file: www.loc.gov/marc/bibliographic/concise/bd785.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_785_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_785_ind_2', BTRIM($label$ - -Second - Type of relationship - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '0', 'Continued by', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '1', 'Continued in part by', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '2', 'Superseded by', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '3', 'Superseded in part by', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '4', 'Absorbed by', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '5', 'Absorbed in part by', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '6', 'Split into ... and ...', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '7', 'Merged with ... to form ...', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '8', 'Changed back to', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '785', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 786 file: www.loc.gov/marc/bibliographic/concise/bd786.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_786_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_786_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_786_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_786_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_786_ind_2', '#', 'Data source', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_786_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '786', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 787 file: www.loc.gov/marc/bibliographic/concise/bd787.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_787_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_787_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_787_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_787_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_787_ind_2', '#', 'Related item', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_787_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '787', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 788 file: www.loc.gov/marc/bibliographic/concise/bd788.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_788_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_788_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_788_ind_1', '1', 'Do not display note', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_788_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_788_ind_2', '#', 'Parallel description in another language of cataloging', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_788_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '788', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 800 file: www.loc.gov/marc/bibliographic/concise/bd800.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_800_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_800_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_800_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_800_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_800_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_800_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '800', 'a', 'Personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 810 file: www.loc.gov/marc/bibliographic/concise/bd810.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_810_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_810_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_810_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_810_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_810_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_810_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '810', 'a', 'Corporate name or jurisdiction name as entry - element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 811 file: www.loc.gov/marc/bibliographic/concise/bd811.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_811_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - - See the description of the first indicator - under field - 111. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_811_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_811_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_811_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_811_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_811_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '811', 'a', 'Meeting name or jurisdiction name as entry - element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 830 file: www.loc.gov/marc/bibliographic/concise/bd830.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_830_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_830_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '830', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 046 file: www.loc.gov/marc/authority/concise/ad046.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_046_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_046_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_046_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_046_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '046', 'f', 'Birth date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 082 file: www.loc.gov/marc/authority/concise/ad082.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_082_ind_1', BTRIM($label$ - -First - Type of edition - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_082_ind_1', '0', 'Full', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_082_ind_1', '1', 'Abridged', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_082_ind_1', '7', 'Other edition specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_082_ind_2', BTRIM($label$ - -Second - Source of call number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_082_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_082_ind_2', '0', 'Assigned by LC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_082_ind_2', '4', 'Assigned by agency other than LC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '082', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 083 file: www.loc.gov/marc/authority/concise/ad083.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_083_ind_1', BTRIM($label$ - -First - Type of edition - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_083_ind_1', '0', 'Full', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_083_ind_1', '1', 'Abridged', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_083_ind_1', '7', 'Other edition specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_083_ind_2', BTRIM($label$ - -Second - Source of classification number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_083_ind_2', '0', 'Assigned by LC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_083_ind_2', '4', 'Assigned by agency other than LC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '083', 'a', 'Classification number element-single number or - beginning number of span (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008s.html - - UPDATE config.record_attr_definition - SET description = 'Frequency' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Regularity' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 19 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 20 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of continuing resource' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 21 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of original item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 22 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 23 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Nature of entire work' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 24 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Nature of contents' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 25 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Government publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 28 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Conference publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 29 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 30 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Original alphabet or script of title' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 33 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Entry convention' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 34 AND rec_type IN ('SER') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 18, '#', 'No determinable frequency', 'Used when the frequency is known to be - intentionally irregular. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'a', 'Annual', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'b', 'Bimonthly', 'Includes publications whose frequency is 6, - 7, or 8 numbers a year. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'c', 'Semiweekly', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'd', 'Daily', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'e', 'Biweekly', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'f', 'Semiannual', 'Includes publications whose frequency is 2 - numbers a year. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'g', 'Biennial', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'h', 'Triennial', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'i', 'Three times a week', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'j', 'Three times a month', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'k', 'Continuously updated', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'm', 'Monthly', 'Includes publications whose frequency is 9, - 10, 11, or 12 numbers a year. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'q', 'Quarterly', 'Includes publications whose frequency is 4 - numbers a year. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 's', 'Semimonthly', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 't', 'Three times a year', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'w', 'Weekly', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 19, 'n', 'Normalized irregular', 'Predictable irregularity pattern.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 19, 'r', 'Regular', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 19, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 19, 'x', 'Completely irregular', 'Used 1) when the frequency is known to be - intentionally irregular (008/18 is coded as - #); or 2) when the frequency in field 310 is - expressed as numbers per year. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 19, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, '#', 'None of the following', 'Also used for yearbooks and annual - reports. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'd', 'Updating database', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'g', 'Magazine', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'h', 'Blog', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'j', 'Journal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'l', 'Updating loose-leaf', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'm', 'Monographic series', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'n', 'Newspaper', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'p', 'Periodical', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'r', 'Repository', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 's', 'Newsletter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 't', 'Directory', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'w', 'Updating Web site', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '#', 'None of the following', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'a', 'Microfilm', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'b', 'Microfiche', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'c', 'Microopaque', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'd', 'Large print', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'e', 'Newspaper format', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'f', 'Braille', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 's', 'Electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '#', 'None of the following', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'a', 'Microfilm', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'b', 'Microfiche', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'c', 'Microopaque', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'd', 'Large print', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'f', 'Braille', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'r', 'Regular print reproduction', 'Eye-readable print, such as a photocopy.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 's', 'Electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '#', 'Not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'a', 'Abstracts/summaries', 'Abstracts or summaries of other - publications. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'b', 'Bibliographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'c', 'Catalogs', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'd', 'Dictionaries', 'Also includes glossaries or gazetteers.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'e', 'Encyclopedias', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'f', 'Handbooks', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'g', 'Legal articles', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'h', 'Biography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'i', 'Indexes', 'Index to bibliographical material other than - itself (e.g., an indexing journal). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'k', 'Discographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'l', 'Legislation', 'Full or partial texts of enactments of - legislative bodies or texts of rules and - regulations issued by executive or - administrative agencies. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'm', 'Theses', 'Thesis, dissertation, or work identified as - having been created to satisfy the - requirements for an academic certification or - degree. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'n', 'Surveys of literature in a subject area', 'Authored surveys that summarize what has been - published about a subject - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'o', 'Reviews', 'Critical reviews of published or performed - works (e.g., books, films, sound recordings, - theater, etc.). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'p', 'Programmed texts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'q', 'Filmographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'r', 'Directories', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 's', 'Statistics', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 't', 'Technical reports', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'u', 'Standards/specifications', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'v', 'Legal cases and case notes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'w', 'Law reports and digests', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'y', 'Yearbooks', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'z', 'Treaties', 'Treaties or accords negotiated between two or - more parties to settle a disagreement, - establish a relationship, grant rights, - etc. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '5', 'Calendars', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '6', 'Comics/graphic novels', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, '#', 'Not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'a', 'Abstracts/summaries', 'Abstracts or summaries of - other publications. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'b', 'Bibliographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'c', 'Catalogs', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'd', 'Dictionaries', 'Also used for a glossary or a gazetteer.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'e', 'Encyclopedias', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'f', 'Handbooks', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'g', 'Legal articles', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'h', 'Biography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'i', 'Indexes', 'Index to bibliographical material other than - itself (e.g., an indexing journal). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'k', 'Discographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'l', 'Legislation', 'Includes of full or partial texts of - enactments of legislative bodies, published - either in statute or in code form, or texts of - rules and regulations issued by executive or - administrative agencies. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'm', 'Theses', 'Thesis, dissertation, or work identified as - having been created to satisfy the - requirements for an academic certification or - degree. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'n', 'Surveys of literature in a subject area', 'Includes authored surveys that summarize what - has been published about a subject - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'o', 'Reviews', 'Includes critical reviews of published or - performed works (e.g., books, films, sound - recordings, theater, etc.). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'p', 'Programmed texts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'q', 'Filmographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'r', 'Directories', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 's', 'Statistics', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 't', 'Technical reports', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'u', 'Standards/specifications', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'v', 'Legal cases and case notes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'w', 'Law reports and digests', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'y', 'Yearbooks', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'z', 'Treaties', 'Includes treaties or accords negotiated - between two or more parties to settle a - disagreement, establish a relationship, grant - rights, etc. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, '5', 'Calendars', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, '6', 'Comics/graphic novels', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, '|||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '#', 'Not a government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'a', 'Autonomous or semi-autonomous component', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'c', 'Multilocal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'f', 'Federal/national', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'i', 'International intergovernmental', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'l', 'Local', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'm', 'Multistate', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'o', 'Government publication-level undetermined', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 's', 'State, provincial, territorial, dependent, - etc.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'u', 'Unknown if item is government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '0', 'Not a conference publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '1', 'Conference publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '#', 'No alphabet or script given/No key title', 'May relate to the title proper in field 245 - when no key title is present. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'a', 'Basic Roman', 'Includes no diacritics or special - characters. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'b', 'Extended Roman', 'Includes diacritics and special - characters. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'c', 'Cyrillic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'd', 'Japanese', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'e', 'Chinese', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'f', 'Arabic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'g', 'Greek', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'h', 'Hebrew', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'i', 'Thai', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'j', 'Devanagari', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'k', 'Korean', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'l', 'Tamil', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'z', 'Other', 'Also used when the title incorporates words - from more than one alphabet or script. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '0', 'Successive entry', 'New bibliographic record is created each time - 1) a title changes, or 2) a corporate body - used as main entry or uniform title qualifier, - changes. The earlier or later title or - author/title is recorded in a linking field - (field 780/785) on each record. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '1', 'Latest entry', 'Cataloged under its latest (most recent) - title or issuing body (pre-AACR cataloging - rules). All former titles and/or issuing - bodies are given in notes (fields 247, 547, - and 550). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '2', 'Integrated entry', 'Cataloged under its latest (most recent) - title and/or responsible person or corporate - body. Used for integrating resources and - electronic serials that do not retain their - earlier titles. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 046 file: www.loc.gov/marc/bibliographic/concise/bd046.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_046_ind_1', BTRIM($label$ - -First - Type of entity - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_046_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_046_ind_1', '1', 'Work', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_046_ind_1', '2', 'Expression', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_046_ind_1', '3', 'Manifestation', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_046_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_046_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '046', 'a', 'Type of date code (NR) -Codes -iInclusive dates of collectionkBulk of collectionmMultiple datesnUnknown datepDistribution/release/issue and production/recording session - datesqQuestionable daterReissue and original datessSingle known/probable datetPublication and copyright datesxIncorrect dates','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 334 file: www.loc.gov/marc/bibliographic/concise/bd334.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_334_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_334_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_334_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_334_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '334', 'a', 'Mode of issuance term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 353 file: www.loc.gov/marc/bibliographic/concise/bd353.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_353_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_353_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_353_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_353_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '353', 'a', 'Supplementary content term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 852 file: www.loc.gov/marc/bibliographic/concise/bd852.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_852_ind_1', BTRIM($label$ - -First - Shelving scheme - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '0', 'Library of Congress classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '1', 'Dewey Decimal classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '2', 'National Library of Medicine classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '3', 'Superintendent of Documents classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '4', 'Shelving control number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '5', 'Title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '6', 'Shelved separately', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '7', 'Source specified in subfield $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '8', 'Other scheme', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_852_ind_2', BTRIM($label$ - -Second - Shelving order - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_2', '0', 'Not enumeration', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_2', '1', 'Primary enumeration', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_2', '2', 'Alternative enumeration', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '852', 'a', 'Location (NR) -Institution or person holding the item or from which access is given. Contains a - MARC code of the holding institution or the name of the institution or person. -See: MARC Code List for Organizations.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 361 file: www.loc.gov/marc/authority/concise/ad361.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_361_ind_1', BTRIM($label$ - -First - Privacy - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_361_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_361_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_361_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_361_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_361_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '361', 'a', 'Name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 368 file: www.loc.gov/marc/authority/concise/ad368.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_368_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_368_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_368_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_368_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '368', 'a', 'Type of corporate body (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 857 file: www.loc.gov/marc/authority/concise/ad857.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_857_ind_1', BTRIM($label$ - -First - Access method - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_1', '1', 'FTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_1', '4', 'HTTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_1', '7', 'Method specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_857_ind_2', BTRIM($label$ - -Second - Relationship - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '0', 'Resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '1', 'Version of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '2', 'Related resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '3', 'Component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '4', 'Version of component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '857', 'b', 'Name of archiving agency (NR) -Agency responsible for the Web archive or digital archive repository.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008a.html - - UPDATE config.record_attr_definition - SET description = 'Date entered on file' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 0 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of date/Publication status' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 6 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Date 1' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 7 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Date 2' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 11 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Place of publication, production, or execution' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 15 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Language' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 35 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Modified record' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 38 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Cataloging source' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 39 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 6, 'b', 'No dates given; B.C. date involved', 'Each character position in fields 008/07-10 and 008/11-14 contains a blank.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'c', 'Continuing resource currently published', '008/07-10 contain the beginning date of publication; 008/11-14 contain the - characters 9999. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'd', 'Continuing resource ceased publication', '008/07-10 contain the beginning date of publication; 008/11-14 contain the date - the item ceased to be published. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'e', 'Detailed date', '008/07-10 contain the year and 008/11-14 contain the month and day formatted - mmdd. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'i', 'Inclusive dates of collection', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'k', 'Range of years of bulk of collection', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'm', 'Multiple dates', '008/07-10 usually contain the initial (or beginning) date and 008/11-14 the - terminal (or ending) date. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'n', 'Dates unknown', 'Dates appropriate for 008/07-10 and 008/11-14 are unknown, (e.g., when no dates - are given in field 260). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'p', 'Date of distribution/release/issue and production/recording session when - different', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'q', 'Questionable date', 'Earliest possible date is given in 008/07-10; latest possible date in - 008/11-14. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'r', 'Reprint/reissue date and original date', '008/07-10 contain the date of reproduction or reissue; 008/11-14 contain the - date of the original, if known. 008/11-14 contain code u ("uuuu"), if - unknown. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 's', 'Single known date/probable date', '008/07-10 contain the date; 008/11-14 contain blanks (####).', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 't', 'Publication date and copyright date', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'u', 'Continuing resource status unknown', '008/07-10 contain a beginning date of publication; 008/11-14 contain the - characters uuuu since no ending date is known. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 7, '1-9', 'Date digit', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 7, '#', 'Date element is not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'u', 'Date element is totally or partially unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 7, '||||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 11, '1-9', 'Date digit', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 11, '#', 'Date element is not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'u', 'Date element is totally or partially unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 11, '||||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, '#', 'Not modified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 'd', 'Dashed-on information omitted', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 'o', 'Completely romanized/printed cards romanized', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 'r', 'Completely romanized/printed cards in script', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 's', 'Shortened', 'Some of the data was omitted because the data exceeded the maximum length - allowed by the system used to create or process it. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 'x', 'Missing characters', 'Record contained characters that could not be converted to machine-readable - form (e.g., incidental nonroman characters on predominantly roman alphabet - records, mathematical symbols, etc.). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 39, '#', 'National bibliographic agency', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 39, 'c', 'Cooperative cataloging program', 'Creator of the cataloging data is a participant (other than a national - bibliographic agency) in a cooperative cataloging program. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 39, 'd', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 39, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 39, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 041 file: www.loc.gov/marc/bibliographic/concise/bd041.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_041_ind_1', BTRIM($label$ - -First - Translation indication - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_041_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_041_ind_1', '0', 'Item not a translation/does not include a - translation', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_041_ind_1', '1', 'Item is or includes a translation', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_041_ind_2', BTRIM($label$ - -Second - Source of code - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_041_ind_2', '#', 'MARC language code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_041_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '041', 'a', 'Language code of text/sound track or separate - title (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 361 file: www.loc.gov/marc/bibliographic/concise/bd361.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_361_ind_1', BTRIM($label$ - -First - Privacy - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_361_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_361_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_361_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_361_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_361_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '361', 'a', 'Name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 561 file: www.loc.gov/marc/bibliographic/concise/bd561.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_561_ind_1', BTRIM($label$ - -First - Privacy - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_561_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_561_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_561_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_561_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_561_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '561', 'a', 'History (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 653 file: www.loc.gov/marc/bibliographic/concise/bd653.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_653_ind_1', BTRIM($label$ - -First - Level of index term - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_1', '0', 'No level specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_1', '1', 'Primary', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_1', '2', 'Secondary', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_653_ind_2', BTRIM($label$ - -Second - Type of term or name - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '0', 'Topical term', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '1', 'Personal name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '2', 'Corporate name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '3', 'Meeting name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '4', 'Chronological term', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '5', 'Geographic name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '6', 'Genre/form term', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '653', 'a', 'Uncontrolled term (R) -Index term is from an uncontrolled subject heading system or thesaurus.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 658 file: www.loc.gov/marc/bibliographic/concise/bd658.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_658_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_658_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_658_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_658_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '658', 'a', 'Main curriculum objective (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 720 file: www.loc.gov/marc/bibliographic/concise/bd720.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_720_ind_1', BTRIM($label$ - -First - Type of name - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_720_ind_1', '#', 'Not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_720_ind_1', '1', 'Personal', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_720_ind_1', '2', 'Other', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_720_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_720_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '720', 'a', 'Name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 857 file: www.loc.gov/marc/bibliographic/concise/bd857.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_857_ind_1', BTRIM($label$ - -First - Access method - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_1', '1', 'FTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_1', '4', 'HTTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_1', '7', 'Method specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_857_ind_2', BTRIM($label$ - -Second - Relationship - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '0', 'Resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '1', 'Version of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '2', 'Related resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '3', 'Component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '4', 'Version of component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '857', 'b', 'Name of archiving agency (NR) -Agency responsible for the Web archive or digital archive repository.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 270 file: www.loc.gov/marc/bibliographic/concise/bd270.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_270_ind_1', BTRIM($label$ - -First - Level - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_270_ind_1', '#', 'No level specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_270_ind_1', '1', 'Primary', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_270_ind_1', '2', 'Secondary', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_270_ind_2', BTRIM($label$ - -Second - Type of address - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_270_ind_2', '#', 'No type specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_270_ind_2', '0', 'Mailing', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_270_ind_2', '7', 'Type specified in subfield $i', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '270', 'a', 'Address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 506 file: www.loc.gov/marc/bibliographic/concise/bd506.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_506_ind_1', BTRIM($label$ - -First - Restriction - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_506_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_506_ind_1', '0', 'No restrictions', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_506_ind_1', '1', 'Restrictions apply', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_506_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_506_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '506', 'a', 'Terms governing access (NR) -Legal, physical, or procedural restrictions imposed on individuals wishing to - see the described materials.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 540 file: www.loc.gov/marc/bibliographic/concise/bd540.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_540_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_540_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_540_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_540_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '540', 'a', 'Terms governing use and reproduction (NR) -Usually mean the text of a legal or official statement of restrictions.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 730 file: www.loc.gov/marc/bibliographic/concise/bd730.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_730_ind_1', BTRIM($label$ - -First - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_730_ind_2', BTRIM($label$ - -Second - Type of added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_2', '2', 'Analytical entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '730', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 758 file: www.loc.gov/marc/bibliographic/concise/bd758.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_758_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_758_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_758_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_758_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '758', 'a', 'Label (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 883 file: www.loc.gov/marc/authority/concise/ad883.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_883_ind_1', BTRIM($label$ - -First - Method of assignment - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_883_ind_1', '#', 'No information provided/not applicable', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_883_ind_1', '0', 'Fully machine-generated', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_883_ind_1', '1', 'Partially machine-generated', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_883_ind_1', '2', 'Not machine-generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_883_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_883_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '883', 'a', 'Creation process (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 310 file: www.loc.gov/marc/bibliographic/concise/bd310.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_310_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_310_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_310_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_310_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '310', 'a', 'Current publication frequency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 321 file: www.loc.gov/marc/bibliographic/concise/bd321.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_321_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_321_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_321_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_321_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '321', 'a', 'Former publication frequency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 883 file: www.loc.gov/marc/bibliographic/concise/bd883.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_883_ind_1', BTRIM($label$ - -First - Method of assignment - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_883_ind_1', '#', 'No information provided/not applicable', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_883_ind_1', '0', 'Fully machine-generated', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_883_ind_1', '1', 'Partially machine-generated', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_883_ind_1', '2', 'Not machine-generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_883_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_883_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '883', 'a', 'Creation process (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008m.html - - UPDATE config.record_attr_definition - SET description = 'Form of composition' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Format of music' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 20 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Music parts' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 21 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Target audience' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 22 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 23 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Accompanying matter' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 24 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Literary text for sound recordings' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 30 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 32 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Transposition and arrangement' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 33 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 34 AND rec_type IN ('SCO') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 18, 'an', 'Anthems', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'bd', 'Ballads', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'bg', 'Bluegrass music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'bl', 'Blues', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'bt', 'Ballets', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ca', 'Chaconnes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cb', 'Chants, Other religions', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cc', 'Chant, Christian', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cg', 'Concerti grossi', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ch', 'Chorales', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cl', 'Chorale preludes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cn', 'Canons and rounds', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'co', 'Concertos', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cp', 'Chansons, polyphonic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cr', 'Carols', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cs', 'Chance compositions', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ct', 'Cantatas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cy', 'Country music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cz', 'Canzonas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'df', 'Dance forms', 'Includes music for individual dances except for mazurkas, minuets, pavans, - polonaises, and waltzes, which have separate codes. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'dv', 'Divertimentos, serenades, cassations, divertissements, and notturni', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'fg', 'Fugues', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'fl', 'Flamenco', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'fm', 'Folk music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ft', 'Fantasias', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'gm', 'Gospel music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'hy', 'Hymns', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'jz', 'Jazz', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mc', 'Musical revues and comedies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'md', 'Madrigals', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mi', 'Minuets', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mo', 'Motets', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mp', 'Motion picture music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mr', 'Marches', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ms', 'Masses', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mu', 'Multiple forms', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mz', 'Mazurkas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'nc', 'Nocturnes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'nn', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'op', 'Operas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'or', 'Oratorios', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ov', 'Overtures', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'pg', 'Program music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'pm', 'Passion music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'po', 'Polonaises', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'pp', 'Popular music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'pr', 'Preludes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ps', 'Passacaglias', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'pt', 'Part-songs', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'pv', 'Pavans', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'rc', 'Rock music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'rd', 'Rondos', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'rg', 'Ragtime music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ri', 'Ricercars', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'rp', 'Rhapsodies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'rq', 'Requiems', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'sd', 'Square dance music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'sg', 'Songs', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'sn', 'Sonatas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'sp', 'Symphonic poems', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'st', 'Studies and exercises', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'su', 'Suites', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'sy', 'Symphonies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'tc', 'Toccatas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'tl', 'Teatro lirico', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ts', 'Trio-sonatas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'uu', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'vi', 'Villancicos', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'vr', 'Variations', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'wz', 'Waltzes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'za', 'Zarzuelas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'zz', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'a', 'Full score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'b', 'Miniature or study score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'c', 'Accompaniment reduced for keyboard', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'd', 'Voice score with accompaniment omitted', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'e', 'Condensed score or piano-conductor score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'g', 'Close score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'h', 'Chorus score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'i', 'Condensed score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'j', 'Performer-conductor part', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'k', 'Vocal score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'l', 'Score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'm', 'Multiple score formats', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'p', 'Piano score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, '#', 'No parts in hand or not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'd', 'Instrumental and vocal parts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'e', 'Instrumental parts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'f', 'Vocal parts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '#', 'Unknown or unspecified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'a', 'Preschool', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'b', 'Primary', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'c', 'Pre-adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'd', 'Adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'e', 'Adult', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'f', 'Specialized', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'g', 'General', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'j', 'Juvenile', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '#', 'None of the following', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'a', 'Microfilm', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'b', 'Microfiche', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'c', 'Microopaque', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'd', 'Large print', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'f', 'Braille', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'r', 'Regular print reproduction', 'Eye-readable print, such as a photocopy.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 's', 'Electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '#', 'No accompanying matter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'a', 'Discography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'b', 'Bibliography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'c', 'Thematic index', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'd', 'Libretto or text', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'e', 'Biography of composer or author', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'f', 'Biography of performer or history of ensemble', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'g', 'Technical and/or historical information on instruments', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'h', 'Technical information on music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'i', 'Historical information', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'k', 'Ethnological information', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'r', 'Instructional materials', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 's', 'Music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, '#', 'Item is a music sound recording', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'a', 'Autobiography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'b', 'Biography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'c', 'Conference proceedings', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'd', 'Drama', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'e', 'Essays', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'f', 'Fiction', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'g', 'Reporting', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'h', 'History', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'i', 'Instruction', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'j', 'Language instruction', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'k', 'Comedy', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'l', 'Lectures, speeches', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'm', 'Memoirs', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'o', 'Folktales', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'p', 'Poetry', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'r', 'Rehearsals', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 's', 'Sounds', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 't', 'Interviews', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '#', 'Not arrangement or transposition or not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'a', 'Transposition', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'b', 'Arrangement', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'c', 'Both transposed and arranged', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 028 file: www.loc.gov/marc/bibliographic/concise/bd028.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_028_ind_1', BTRIM($label$ - -First - Type of number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '0', 'Issue number - Number used to identify the issue designation, or serial identification, - assigned by a publisher to a specific sound recording, side of a sound - recording, or performance on a sound recording or to a group of sound - recordings issued as a set.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '1', 'Matrix number - Master from which the specific recording was pressed.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '2', 'Plate number - Assigned by a publisher to a specific music publication.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '3', 'Other music publisher number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '4', 'Video recording publisher number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '5', 'Other publisher number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '6', 'Distributor number', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_028_ind_2', BTRIM($label$ - -Second - Note/added entry controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_2', '0', 'No note, no added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_2', '1', 'Note, added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_2', '2', 'Note, no added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_2', '3', 'No note, added entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '028', 'a', 'Publisher or distributor number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 037 file: www.loc.gov/marc/bibliographic/concise/bd037.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_037_ind_1', BTRIM($label$ - -First - Source of acquisition sequence - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_037_ind_1', '#', 'Not applicable/No information provided/Earliest', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_037_ind_1', '2', 'Intervening', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_037_ind_1', '3', 'Current/Latest', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_037_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_037_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '037', 'a', 'Stock number (NR) -Numbers such as distributor, publisher, or vendor numbers for resources - other than music, music-related, or audiovisual materials are also recorded in - this subfield.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: lea file: www.loc.gov/marc/bibliographic/concise/bdleader.html - - UPDATE config.record_attr_definition - SET description = 'Record length' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 0 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Record status' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 5 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of record' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 6 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Bibliographic level' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 7 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of control' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 8 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Character coding scheme' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 9 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Indicator count' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 10 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Subfield code count' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 11 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Base address of data' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 12 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Encoding level' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 17 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Descriptive cataloging form' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 18 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Multipart resource record level' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 19 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Length of the length-of-field portion' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 20 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Length of the starting-character-position portion' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 21 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Length of the implementation-defined portion' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 22 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 23 AND rec_type NOT IN ('AUT') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('ldr', 5, 'a', 'Increase in encoding level', 'Encoding level (Leader/17) of the record has been changed to a higher encoding - level. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 5, 'c', 'Corrected or revised', 'Addition/change other than in the Encoding level code has been made to the - record. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 5, 'd', 'Deleted', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 5, 'n', 'New', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 5, 'p', 'Increase in encoding level from prepublication', 'Prepublication record has had a change in cataloging level resulting from the - availability of the published item. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'a', 'Language material', 'Includes microforms and electronic resources that are basically textual in - nature, whether they are reproductions from print or originally produced. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'c', 'Notated music', 'Used for printed, microform, or electronic notated music.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'd', 'Manuscript notated music', 'Used for manuscript notated music or a microform of manuscript music.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'e', 'Cartographic material', 'Includes maps, atlases, globes, digital maps, and other cartographic items.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'f', 'Manuscript cartographic material', 'Used for manuscript cartographic material or a microform of manuscript - cartographic material. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'g', 'Projected medium', 'Used for motion pictures, videorecordings (including digital video), - filmstrips, slide, transparencies or material specifically designed for - projection. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'i', 'Nonmusical sound recording', 'Used for a recording of nonmusical sounds (e.g., speech).', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'j', 'Musical sound recording', 'Used for a musical sound recording (e.g., phonodiscs, compact discs, or - cassette tapes. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'k', 'Two-dimensional nonprojectable graphic', 'Used for two-dimensional nonprojectable graphics such as, activity cards, - charts, collages, computer graphics, digital pictures, drawings, duplication - masters, flash cards, paintings, photo CDs, photomechanical reproductions, - photonegatives, photoprints, pictures, postcards, posters, prints, spirit - masters, study prints, technical drawings, transparency masters, and - reproductions of any of these. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'm', 'Computer file', 'Used for the following classes of electronic resources: computer software - (including programs, games, fonts), numeric data, computer-oriented multimedia, - online systems or services. For these classes of materials, if there is a - significant aspect that causes it to fall into another Leader/06 category, the - code for that significant aspect is used instead of code m (e.g., vector data - that is cartographic is not coded as numeric but as cartographic). Other - classes of electronic resources are coded for their most significant aspect - (e.g. language material, graphic, cartographic material, sound, music, moving - image). In case of doubt or if the most significant aspect cannot be - determined, consider the item a computer file. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'o', 'Kit', 'Used for a mixture of various components issued as a unit and intended - primarily for instructional purposes where no one item is the predominant - component of the kit. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'p', 'Mixed materials', 'Used when there are significant materials in two or more forms that are usually - related by virtue of their having been accumulated by or about a person or - body. Includes archival fonds and manuscript collections of mixed forms of - materials, such as text, photographs, and sound recordings. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'r', 'Three-dimensional artifact or naturally occurring object', 'Includes man-made objects such as models, dioramas, games, puzzles, - simulations, sculptures and other three-dimensional art works, exhibits, - machines, clothing, toys, and stitchery. Also includes naturally occurring - objects such as, microscope specimens (or representations of them) and other - specimens mounted for viewing. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 't', 'Manuscript language material', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 'a', 'Monographic component part', 'Monographic bibliographic unit that is physically attached to or contained in - another unit such that the retrieval of the component part is dependent on the - identification and location of the host item or container. Contains fields that - describe the component part and data that identify the host, field 773 (Host - Item Entry). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 'b', 'Serial component part', 'Serial bibliographic unit that is physically attached to or contained in - another unit such that the retrieval of the component part is dependent on the - identification and location of the host item or container. Contains fields that - describe the component part and data that identify the host, field 773 (Host - Item Entry). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 'c', 'Collection', 'Made-up multipart group of items that were not originally published, - distributed, or produced together. The record describes units defined by common - provenance or administrative convenience for which the record is intended as - the most comprehensive in the system. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 'd', 'Subunit', 'Part of collection, especially an archival unit described collectively - elsewhere in the system. Contains fields that describe the subunit and data - that identify the host item. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 'i', 'Integrating resource', 'Bibliographic resource that is added to or changed by means of updates that do - not remain discrete and are integrated into the whole. Examples include - updating loose-leafs and updating Web sites. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 'm', 'Monograph/Item', 'Item either complete in one part (e.g., a single monograph, a single map, a - single manuscript, etc.) or intended to be completed, in a finite number of - separate parts (e.g., a multivolume monograph, a sound recording with multiple - tracks, etc.). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 's', 'Serial', 'Bibliographic item issued in successive parts bearing numerical or - chronological designations and intended to be continued indefinitely. Includes - periodicals; newspapers; annuals (reports, yearbooks, etc.); the journals, - memoirs, proceedings, transactions, etc., of societies; and numbered - monographic series, etc. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 8, 'a', 'Archival', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 9, '#', 'MARC-8', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 9, 'a', 'UCS/Unicode', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '#', 'Full level', 'Most complete MARC record created from information derived from an inspection - of the physical item. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '1', 'Full level, material not examined', 'Next most complete MARC record after the full level created from information - derived from an extant description of the item (e.g., a printed catalog card or - a description in an institutional guide) without reinspection of the physical - item. Used primarily in the retrospective conversion of records when all of the - information on the extant description is transcribed. Certain control field - coding and other data (e.g., field 043 (Geographic Area Code)) are based only - on explicit information in the description. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '2', 'Less-than-full level, material not examined', 'Less-than-full level record (i.e., a record that falls between minimal level - and full) created from an extant description of the material (e.g., a printed - catalog card) without reinspection of the physical item. Used primarily in the - retrospective conversion of records when all of the descriptive access points - but only a specified subset of other data elements are transcribed. - Authoritative headings may not be current. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '3', 'Abbreviated level', 'Brief record that does not meet minimal level cataloging specifications. - Headings in the records may reflect established forms to the extent that such - forms were available at the time the record was created. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '4', 'Core level', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '5', 'Partial (preliminary) level', 'Preliminary cataloging level record that is not considered final by the - creating agency (e.g., the headings may not reflect established forms; the - record may not meet national-level cataloging specifications). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '7', 'Minimal level', 'Record that meets the U.S. National Level Bibliographic Record minimal level - cataloging specifications and is considered final by the creating agency. - Headings have been checked against an authority file and reflect established - forms to the extent that such forms were available at the time the minimal - level record was created. The U.S. requirements for minimal-level records can - be found in National Level and Minimal - Level Record Requirements', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '8', 'Prepublication level', 'Prepublication level record. Includes records created in cataloging in - publication programs. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, 'u', 'Unknown', 'Used by an agency receiving or sending data with a local code in Leader/17 - cannot adequately determine the appropriate encoding level of the record. Code - u thus replaces the local code. Not used in newly input or updated records. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, 'z', 'Not applicable', 'Concept of encoding level does not apply to the record.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 18, '#', 'Non-ISBD', 'Descriptive portion of the record does not follow International Standard - Bibliographic Description (ISBD) cataloging and punctuation - provisions. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 18, 'a', 'AACR 2', 'Descriptive portion of the record is formulated according to the description and - punctuation provisions as incorporated into the Anglo-American Cataloging Rules, - 2nd Edition (AACR 2) and its manuals. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 18, 'c', 'ISBD punctuation omitted', 'Descriptive portion of the record contains the punctuation provisions of ISBD, - except ISBD punctuation is not present at the end of a subfield. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 18, 'i', 'ISBD punctuation included', 'Descriptive portion of the record contains the punctuation provisions of ISBD.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 18, 'n', 'Non-ISBD punctuation omitted', 'Descriptive portion of the record does not follow International Standard Bibliographic - Description (ISBD) cataloging and punctuation provisions, and punctuation is not - present at the end of a subfield. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 18, 'u', 'Unknown', 'Institution receiving or sending data in Leader/18 cannot adequately determine - the appropriate descriptive cataloging form used in the record. May be used in - records converted from another metadata format. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 19, '#', 'Not specified or not applicable', 'The distinction between record levels is not specified or not applicable for - the type of resource. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 19, 'a', 'Set', 'Record is for a set consisting of multiple items.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 19, 'b', 'Part with independent title', 'The record is for a resource which is part of a set and has a title that allows it - to be independent of the set record. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 19, 'c', 'Part with dependent title', 'The record is for a resource which is part of a set but has a title that makes it - dependent on the set record to understand its context. - ', 'biblio'); --- category: authority tag: 055 file: www.loc.gov/marc/authority/concise/ad055.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_055_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_055_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_055_ind_2', BTRIM($label$ - -Second - Source of call number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_055_ind_2', '0', 'Assigned by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_055_ind_2', '4', 'Assigned by agency other than LAC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '055', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 251 file: www.loc.gov/marc/bibliographic/concise/bd251.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_251_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_251_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_251_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_251_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '251', 'a', 'Version (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 341 file: www.loc.gov/marc/bibliographic/concise/bd341.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_341_ind_1', BTRIM($label$ - -First - Application - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_341_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_341_ind_1', '0', 'Adaptive features to access primary content', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_341_ind_1', '1', 'Adaptive features to access secondary content', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_341_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_341_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '341', 'a', 'Content access mode (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 688 file: www.loc.gov/marc/bibliographic/concise/bd688.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_688_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_688_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_688_ind_2', BTRIM($label$ - -Second - Source of name, title, or term - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_688_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_688_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '688', 'a', 'Name, title, or term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007s.html - - UPDATE config.record_attr_definition - SET description = 'Category of material' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 0 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Specific material designation' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 1 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 2 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Speed' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 3 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Configuration of playback channels' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 4 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Groove width/groove pitch' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 5 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Dimensions' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 6 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Tape width' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 7 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Tape Configuration' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 8 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Kind of disc, cylinder or tape' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 9 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Kind of material' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 10 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Kind of cutting' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 11 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Special playback characteristics' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 12 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Original capture and storage technique' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 13 AND rec_type NOT IN ('AUT') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('007', 0, 's', 'Sound recording', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'b', 'Belt', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'd', 'Sound disc', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'e', 'Cylinder', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'g', 'Sound cartridge', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'i', 'Sound-track film', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'q', 'Roll', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'r', 'Remote', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 's', 'Sound cassette', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 't', 'Sound-tape reel', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'u', 'Unspecified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'w', 'Wire recording', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'a', '16 rpm (discs)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'b', '33 1/3 rpm (discs)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'c', '45 rpm (discs)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'd', '78 rpm (discs)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'e', '8 rpm (discs)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'f', '1.4 m. per second (discs)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'h', '120 rpm (cylinders)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'i', '160 rpm (cylinders)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'k', '15/16 ips (tapes)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'l', '1 7/8 ips (tapes)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'm', '3 3/4 ips (tapes)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'o', '7 1/2 ips (tapes)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'p', '15 ips (tapes)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'r', '30 ips (tape)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'm', 'Monaural', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'q', 'Quadraphonic, multichannel, or surround', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 's', 'Stereophonic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'm', 'Microgroove/fine', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 's', 'Coarse/standard', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'a', '3 in. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'b', '5 in. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'c', '7 in. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'd', '10 in. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'e', '12 in. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'f', '16 in. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'g', '4 3/4 in. or 12 cm. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'j', '3 7/8 x 2 1/2 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'o', '5 1/4 x 3 7/8 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 's', '2 3/4 x 4 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'l', '1/8 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'm', '1/4 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'o', '1/2 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'p', '1 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'a', 'Full (1) track', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'b', 'Half (2) track', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'c', 'Quarter (4) track', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'd', 'Eight track', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'e', 'Twelve track', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'f', 'Sixteen track', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'a', 'Master tape', 'Final tape production master that is used to make a disc master or a tape - duplication master. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'b', 'Tape duplication master', 'Sound tape produced from the master tape.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'd', 'Disc master (negative)', 'Negative disc master that is used for the preparation of the mother from which - more serviceable and longer lasting metal stampers can be made. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'i', 'Instantaneous (recorded on the spot)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'm', 'Mass-produced', 'Includes discs or tapes issued as limited pressing or limited - issue for private distribution. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'r', 'Mother (positive)', 'Exact copy of the original disc recording pressed from the disc master. From - the metal mother a negative metal stamper is made to press - discs for distribution. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 's', 'Stamper (negative)', 'Negative metal part, produced from the mother in an electroplating - procedure, from which 500 to 750 discs may be pressed. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 't', 'Test pressing', 'Either one finished disc or one of a very limited pressing is made, designed to - be examined aurally before a decision is made to proceed with a pressing. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'u', 'Unknown', 'Type of disc, cylinder, or tape is not known.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'a', 'Lacquer coating', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'b', 'Cellulose nitrate', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'c', 'Acetate tape with ferrous oxide', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'g', 'Glass with lacquer', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'i', 'Aluminum with lacquer', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'l', 'Metal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'm', 'Plastic with metal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'p', 'Plastic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'r', 'Paper with lacquer or ferrous oxide', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 's', 'Shellac', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'w', 'Wax', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'h', 'Hill-and-dale cutting', 'Vertical cutting, with no lateral information intended for reproduction.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'l', 'Lateral or combined cutting', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'n', 'Not applicable', 'Compact audio discs are coded n as they are pitted rather than cut.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'a', 'NAB standard', 'National Association of Broadcasters (NAB) standard was used for the - transcription of the recording and NAB playback equalization is required. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'b', 'CCIR standard', 'Comité consultatif de la radiodiffusion (CCIR) standard was used for the - transcription of the recording and CCIR playback equalization is required. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'c', 'Dolby-B encoded', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'd', 'dbx encoded', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'e', 'Digital recording', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'f', 'Dolby-A encoded', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'g', 'Dolby-C encoded', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'h', 'CX encoded', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'a', 'Acoustical capture, analog direct storage', 'Recorded sound originally captured using an acoustical horn and - diaphragm and stored directly on a surface such as a disc or - cylinder. Most acoustical recordings date from the era beginning - in 1877, when the first practical commercial recording machines - were developed, until the mid-to-late 1920s, a transitional period - marked by the release of the earliest electrical recordings in 1925. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'b', 'Electrical capture, analog direct storage', 'Recorded sound originally captured using microphones and other electrical - equipment and stored directly on the surface of a disc. All recordings - that were made with microphones and other electrical equipment used direct - storage beginning with the earliest electrical recordings in 1925 through - the late 1940s. More recent commercial recordings marked "direct to disc" - or some equivalent phrase also used this technique. Also known as - electromechanical recording. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'd', 'Electrical capture, digital storage', 'Recorded sound originally captured electrically and stored using digital - techniques, which became available in the 1980s. Such recordings may be - identified as "digitally recorded" or by use of a similar phrase on the - label or package. However, designations such as "digital remastering" or - "digital mixing" are post-capture and storage processes and are not meant - to suggest that the original capture or storage techniques were digital. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'e', 'Electrical capture, analog electrical storage', 'Sound recordings which were captured using electrical techniques and - stored as modulations and pulses on a magnetic surface. Most recordings - made from the late 1940s until the transitional period from the early - 1980s through the early 1990s are analog electrical recordings. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'u', 'Unknown capture and storage', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 034 file: www.loc.gov/marc/bibliographic/concise/bd034.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_034_ind_1', BTRIM($label$ - -First - Type of scale - - Specifies the type of scale information given. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_034_ind_1', '0', 'Scale indeterminable/No scale recorded - Used when no representative fraction is given in field 255 - or no field 255 is present in the record.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_034_ind_1', '1', 'Single scale', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_034_ind_1', '3', 'Range of scales', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_034_ind_2', BTRIM($label$ - -Second - Type of ring - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_034_ind_2', '#', 'Not applicable', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_034_ind_2', '0', 'Outer ring', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_034_ind_2', '1', 'Exclusion ring', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '034', 'a', 'Category of scale (NR) -One-character alphabetic code indicating the type of scale of the item. -Used even when a specific scale is not recorded (first indicator position contains - value 0). For non-cartographic materials (i.e. images, graphic materials, - textual materials, etc.) subfield $a is not used. The codes used in - subfield $a are: - -a - Linear scale -b - Angular scale -z - Other type of scale','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 344 file: www.loc.gov/marc/bibliographic/concise/bd344.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_344_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_344_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_344_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_344_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '344', 'a', 'Type of recording (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 260 file: www.loc.gov/marc/bibliographic/concise/bd260.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_260_ind_1', BTRIM($label$ - -First - Sequence of publishing statements - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_260_ind_1', '#', 'Not applicable/No information provided/Earliest available publisher', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_260_ind_1', '2', 'Intervening publisher', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_260_ind_1', '3', 'Current/latest publisher', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_260_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_260_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '260', 'a', 'Place of publication, distribution, etc. (R) -May contain the abbreviation [S.l.] when the place is unknown.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 020 file: www.loc.gov/marc/authority/concise/ad020.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_020_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_020_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_020_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_020_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '020', 'a', 'International Standard Book Number (NR) -Valid ISBN. ISBN and the - embedded hyphens may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 015 file: www.loc.gov/marc/bibliographic/concise/bd015.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_015_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_015_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_015_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_015_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '015', 'a', 'National bibliography number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 020 file: www.loc.gov/marc/bibliographic/concise/bd020.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_020_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_020_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_020_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_020_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '020', 'a', 'International Standard Book Number (NR) -Valid ISBN. ISBN and the - embedded hyphens may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 024 file: www.loc.gov/marc/bibliographic/concise/bd024.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_024_ind_1', BTRIM($label$ - -First - Type of standard number or code - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '0', 'International Standard Recording Code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '1', 'Universal Product Code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '2', 'International Standard Music Number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '3', 'International Article Number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '4', 'Serial Item and Contribution Identifier', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '7', 'Source specified in subfield $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '8', 'Unspecified type of standard number or code', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_024_ind_2', BTRIM($label$ - -Second - Difference indicator - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_2', '0', 'No difference', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_2', '1', 'Difference', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '024', 'a', 'Standard number or code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 027 file: www.loc.gov/marc/bibliographic/concise/bd027.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_027_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_027_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_027_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_027_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '027', 'a', 'Standard technical report number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - - - DO $$ - DECLARE - rec_cat config.marc_record_type; - rec_tag TEXT; - BEGIN - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '014'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '016'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '020'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '022'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '023'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '024'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '031'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '034'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '035'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '040'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '042'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '043'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '045'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '046'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '050'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '052'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '053'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '055'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '060'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '065'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '066'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '070'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '072'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '073'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '075'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '080'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '082'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '083'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '086'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '087'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '09x'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '100'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '110'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '111'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '130'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '147'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '148'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '150'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '151'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '155'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '162'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '180'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '181'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '182'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '185'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '260'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '335'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '336'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '348'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '360'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '361'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '368'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '370'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '371'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '372'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '373'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '374'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '375'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '376'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '377'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '378'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '380'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '381'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '382'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '383'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '384'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '385'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '386'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '387'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '388'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '400'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '410'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '411'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '430'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '447'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '448'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '450'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '451'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '455'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '462'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '480'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '481'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '482'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '485'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '500'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '510'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '511'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '530'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '547'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '548'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '550'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '551'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '555'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '562'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '580'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '581'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '582'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '585'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '640'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '641'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '642'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '643'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '644'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '645'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '646'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '663'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '664'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '665'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '666'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '667'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '670'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '672'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '673'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '675'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '677'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '678'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '680'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '681'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '682'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '688'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '700'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '710'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '711'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '730'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '747'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '748'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '750'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '751'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '755'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '762'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '780'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '781'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '782'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '785'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '788'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '856'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '857'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '880'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '883'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '884'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '885'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '013'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '015'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '016'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '017'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '018'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '020'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '022'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '023'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '024'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '025'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '026'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '027'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '028'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '030'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '031'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '032'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '033'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '034'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '035'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '036'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '037'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '038'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '040'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '041'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '042'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '043'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '044'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '045'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '046'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '047'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '048'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '050'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '051'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '052'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '055'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '060'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '061'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '066'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '070'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '071'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '072'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '074'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '080'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '082'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '083'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '084'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '085'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '086'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '088'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '09x'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '100'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '110'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '111'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '130'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '210'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '222'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '240'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '242'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '243'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '245'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '246'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '247'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '250'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '251'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '254'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '255'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '256'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '257'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '258'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '260'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '263'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '264'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '270'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '300'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '306'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '307'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '310'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '321'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '334'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '335'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '336'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '337'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '338'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '340'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '341'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '342'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '343'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '344'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '345'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '346'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '347'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '348'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '351'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '352'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '353'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '355'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '357'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '361'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '362'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '363'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '365'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '366'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '370'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '377'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '380'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '381'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '382'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '383'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '384'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '385'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '386'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '387'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '388'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '490'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '500'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '501'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '502'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '504'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '505'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '506'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '507'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '508'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '510'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '511'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '513'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '514'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '515'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '516'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '518'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '520'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '521'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '522'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '524'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '525'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '526'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '530'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '532'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '533'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '534'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '535'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '536'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '538'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '540'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '541'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '542'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '544'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '545'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '546'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '547'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '550'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '552'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '555'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '556'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '561'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '562'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '563'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '565'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '567'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '580'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '581'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '583'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '584'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '585'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '586'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '588'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '59x'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '600'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '610'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '611'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '630'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '647'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '648'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '650'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '651'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '653'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '654'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '655'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '656'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '657'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '658'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '662'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '688'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '69x'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '700'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '710'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '711'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '720'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '730'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '740'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '751'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '752'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '753'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '754'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '758'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '760'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '762'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '765'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '767'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '770'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '772'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '773'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '774'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '775'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '776'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '777'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '780'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '785'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '786'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '787'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '788'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '800'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '810'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '811'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '830'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '850'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '852'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '856'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '857'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '880'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '881'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '882'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '883'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '884'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '885'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '886'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '887'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - END $$; COMMIT; diff --git a/Open-ILS/src/sql/Pg/version-upgrade/3.12.3-3.13.0-upgrade-db.sql b/Open-ILS/src/sql/Pg/version-upgrade/3.12.3-3.13.0-upgrade-db.sql index c8cd8d62df..0746950fda 100644 --- a/Open-ILS/src/sql/Pg/version-upgrade/3.12.3-3.13.0-upgrade-db.sql +++ b/Open-ILS/src/sql/Pg/version-upgrade/3.12.3-3.13.0-upgrade-db.sql @@ -1314,29914 +1314,9 @@ INSERT INTO permission.perm_list ( id, code, description ) SELECT DISTINCT FROM permission.perm_list WHERE NOT EXISTS (SELECT 1 FROM permission.perm_list WHERE code = 'PATRON_BARRED.override'); - - -SELECT evergreen.upgrade_deps_block_check('1416', :eg_version); - -\set ON_ERROR_STOP on - -DO $$ -BEGIN - -- Check if the constraint already exists - IF NOT EXISTS ( - SELECT 1 - FROM pg_constraint - WHERE conname = 'ctype_code_unique' - AND conrelid = 'config.coded_value_map'::regclass - ) - THEN - -- Add the constraint if it doesn't exist - ALTER TABLE config.coded_value_map - ADD CONSTRAINT ctype_code_unique UNIQUE (ctype, code); - END IF; -END -$$; - -INSERT INTO config.record_attr_definition (name, label, multi, filter, sorter, composite, fixed_field) - SELECT 'FMat', 'Form of Material', 't', 't', 'f', 'f', 'FMat' - WHERE NOT EXISTS (SELECT 1 FROM config.record_attr_definition WHERE name = 'FMat'); - -INSERT INTO config.marc21_ff_pos_map (fixed_field, tag, rec_type, start_pos, length) -SELECT v.fixed_field, v.tag, v.rec_type, v.start_pos, v.length -FROM (VALUES - ('FMat', '006', 'BKS', 0, 1), - ('FMat', '006', 'COM', 0, 1), - ('FMat', '006', 'MAP', 0, 1), - ('FMat', '006', 'MIX', 0, 1), - ('FMat', '006', 'REC', 0, 1), - ('FMat', '006', 'SCO', 0, 1), - ('FMat', '006', 'SER', 0, 1), - ('FMat', '006', 'VIS', 0, 1) -) AS v(fixed_field, tag, rec_type, start_pos, length) -WHERE -FALSE AND -- skipping the 006 for now -NOT EXISTS ( - SELECT 1 FROM config.marc21_ff_pos_map - WHERE - fixed_field = v.fixed_field AND - tag = v.tag AND - rec_type = v.rec_type AND - start_pos = v.start_pos -); - -CREATE OR REPLACE FUNCTION evergreen.insert_update_coded_value_map(_tag TEXT, _start_pos INT, _code TEXT, _value TEXT, _description TEXT, _rec_type TEXT) -RETURNS VOID AS $$ -DECLARE - _ctype TEXT; - _processed_value TEXT; - _grouped_rec_type TEXT[]; -BEGIN - -- Mapping _rec_type to groups - CASE _rec_type - WHEN 'biblio' THEN - _grouped_rec_type := ARRAY['COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER']; - WHEN 'authority' THEN - _grouped_rec_type := ARRAY['AUT']; - ELSE - _grouped_rec_type := ARRAY[_rec_type]; -- Default to itself if not mapped - END CASE; - - SELECT name INTO _ctype - FROM config.record_attr_definition - WHERE fixed_field = ( - SELECT fixed_field - FROM config.marc21_ff_pos_map - WHERE tag = _tag AND start_pos = _start_pos - AND rec_type = ANY(_grouped_rec_type) - LIMIT 1 - ); - - IF _ctype IS NULL THEN - RAISE INFO 'Subquery returned NULL for tag %, start_pos %', _tag, _start_pos; - ELSE - _processed_value := _value; - IF _value IN ('#', '|') THEN - _processed_value := ' '; - RAISE INFO 'Replacing value "%" with a space for tag %, start_pos %, code %', _value, _tag, _start_pos, _code; - END IF; - - INSERT INTO config.coded_value_map (ctype, code, value, description) - VALUES (_ctype, _code, _processed_value, _description) - ON CONFLICT (ctype, code) - DO UPDATE SET - value = EXCLUDED.value, - description = EXCLUDED.description; - END IF; -END; -$$ LANGUAGE plpgsql; - -CREATE OR REPLACE FUNCTION evergreen.simple_insert_update_coded_value_map(_ctype TEXT, _code TEXT, _value TEXT, _description TEXT) -RETURNS VOID AS $$ -BEGIN - INSERT INTO config.coded_value_map (ctype, code, value, description) - VALUES (_ctype, _code, _value, _description) - ON CONFLICT (ctype, code) - DO UPDATE SET - value = EXCLUDED.value, - description = EXCLUDED.description; -END; -$$ LANGUAGE plpgsql; --- category: authority tag: 001 file: www.loc.gov/marc/authority/concise/ad001.html --- category: authority tag: 003 file: www.loc.gov/marc/authority/concise/ad003.html --- category: authority tag: 005 file: www.loc.gov/marc/authority/concise/ad005.html --- category: authority tag: 008 file: www.loc.gov/marc/authority/concise/ad008.html - - UPDATE config.record_attr_definition - SET description = 'Date entered on file' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 0 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Direct or indirect geographic subdivision' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 6 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Romanization scheme' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 7 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Language of catalog' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 8 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Kind of record' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 9 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Descriptive cataloging rules' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 10 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Subject heading system/thesaurus' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 11 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of series' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 12 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Numbered or unnumbered series' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 13 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Heading use-main or added entry' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 14 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Heading use-subject added entry' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 15 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Heading use-series added entry' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 16 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of subject subdivision' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 17 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined character positions' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of government agency' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 28 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Reference evaluation' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 29 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined character position' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 30 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Record update in process' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 31 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undifferentiated personal name' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 32 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Level of establishment' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 33 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined character positions' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 34 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Modified record' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 38 AND rec_type = 'AUT' LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Cataloging source' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 39 AND rec_type = 'AUT' LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 6, '#', 'Not subdivided geographically', '1XX heading is not to be subdivided geographically when used in a subject - access entry in a bibliographic record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'd', 'Subdivided geographically-direct', 'Heading is followed immediately by the name of the specific place to which the - heading is limited without the interposition of a subdivision for the name of - the larger geographic entity. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'i', 'Subdivided geographically-indirect', 'Name of the larger geographic entity is interposed between the heading and the - subdivision for the specific place to which the heading is limited. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'n', 'Not applicable', 'Heading is unestablished or is an established heading that is not appropriate - for use as a subject added entry in bibliographic records (008/15, code b). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 6, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'a', 'a - International standard', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'b', 'b - National standard', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'c', 'c - National library association standard', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'd', 'd - National library or bibliographic agency standard', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'e', 'e - Local standard', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'f', 'f - Standard of unknown origin', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'g', 'g - Conventional romanization or conventional form of name in language of', 'cataloging agency', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'n', 'Not applicable', '1XX heading is not romanized.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 7, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 8, '#', '# - No information provided', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 8, 'b', 'b - English and French', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 8, 'e', 'e - English only', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 8, 'f', 'f - French only', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 8, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'a', 'Established heading', '100-15X field contains an established name, name/title, - uniform title, topical term, or one of these used in an extended subject - heading. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'b', 'Untraced reference', '100-15X field contains an unestablished heading that is not - authorized for use as the element in an access point in a bibliographic record. - The heading is not traced as a 4XX See From Tracing field in any other - authority record. The reference record contains a Complex See Reference (260) - or a General Explanatory Reference (666) field to guide the user to established - heading(s). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'c', 'Traced reference', '100-15X field contains an unestablished heading that is traced - as a 4XX field in the record for each established heading referred to in fields - 260 or 664. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'd', 'Subdivision', '18X field contains an unestablished heading that may be used - as a subject subdivision with an established heading. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'e', 'Node label', '15X field contains an unestablished term that is the - authorized form that is used in the systematic section of a thesaurus to - indicate the logical basis on which a category has been divided. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'f', 'Established heading and subdivision', '15X field contains an established heading that may be used as - a main term and as a subject subdivision. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, 'g', 'Reference and subdivision', '15X field contains an unestablished heading that may be used - as a reference term and as a subject subdivision. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 9, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, 'a', 'Earlier rules', 'Formulation of the 1XX heading conforms to descriptive cataloging rules used - prior to the 1967 publication of Anglo-American Cataloging Rules (AACR - 1). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, 'b', 'AACR 1', 'Formulation of the 1XX heading conforms to the 1967 Anglo-American - Cataloging Rules (AACR 1). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, 'c', 'AACR 2', 'Formulation of the 1XX heading conforms to the second edition (1978) or later - editions of Anglo-American Cataloguing Rules (AACR 2) or published - cataloging manuals based on the AACR 2. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, 'd', 'AACR 2 compatible heading', 'Formulation of the 1XX heading does not follow but is considered compatible - with AACR 2. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, 'z', 'Other', 'Formulation of the 1XX heading conforms to a set of descriptive cataloging - conventions other than what is specified by one of the other defined codes. - - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, 'n', 'Not applicable', '1XX heading is not a name, name/title, or uniform title formulated according to - descriptive cataloging rules and is not appropriate for use as a main or added - entry in bibliographic records. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 10, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'a', 'Library of Congress Subject Headings', '1XX heading conforms to Library of Congress Subject Headings - (LCSH). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'b', 'b - Library of Congress Children''s and Young Adults'' Subject Headings', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'c', 'Medical Subject Headings', '1XX heading conforms to Medical Subject Headings (MeSH). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'd', 'National Agricultural Library subject authority file', '1XX heading conforms to the NAL subject authority file.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'k', 'Canadian Subject Headings', '1XX heading conforms to Canadian Subject Headings. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'n', 'Not applicable', '1XX heading does not conform to subject heading system/thesaurus conventions - and is not appropriate for use as a subject added entry in bibliographic - records. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'r', 'Art and Architecture Thesaurus', '1XX heading conforms to Art and Architecture Thesaurus. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 's', 'Sears List of Subject Heading', '1XX heading conforms to Sears List of Subject Headings. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'v', 'Répertoire de vedettes-matière', '1XX heading conforms to Répertoire de vedettes-matière. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'z', 'Other', '1XX heading conforms to subject heading system/thesaurus conventions other than - that specified by one of the other defined codes. A MARC code for the - conventions used to formulate the heading may be contained in subfield - $f (Subject heading/thesaurus conventions) in field 040 (Cataloging - Source). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 11, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 12, 'a', 'Monographic series', '1XX field contains an established heading for a collective title that applies - to a group of separate publications and/or subseries, each of which also has - its own title. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 12, 'b', 'Multipart item', '1XX field contains an established heading for a collective title that applies - to a multipart monographic publication. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 12, 'c', 'Series-like phrase', '1XX field contains a phrase that is not being used as a series in a - bibliographic record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 12, 'n', 'Not applicable', '1XX field does not represent a series or a series-like phrase and is not - appropriate for use as a series added entry in bibliographic records. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 12, 'z', 'Other', '1XX field contains a heading for a publication that does not fit any of the - other defined codes but for which series-type treatment is required. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 12, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 13, 'a', 'a - Numbered', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 13, 'b', 'b - Unnumbered', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 13, 'c', 'c - Numbering varies', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 13, 'n', 'Not applicable', '1XX heading is not a series heading (008/12, code n).', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 13, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 14, 'a', 'Appropriate', '1XX field contains an established name, name/title, or uniform title that - conforms to descriptive cataloging rules. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 14, 'b', 'Not appropriate', '1XX heading in an established heading record does not conform to descriptive - cataloging conventions or the 1XX field contains an unestablished heading in a - reference, subdivision, or node label record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 14, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 15, 'a', 'Appropriate', '1XX field contains an established heading name, name/title, uniform title, - topical term, or extended subject heading that conforms to subject heading - system/thesaurus conventions. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 15, 'b', 'Not appropriate', '1XX heading in an established heading record does not conform to subject - heading system/thesaurus conventions or the 1XX field contains an unestablished - heading in a reference, subdivision, or node label record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 15, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 16, 'a', 'Appropriate', '1XX heading in an established heading record represents one of the types of - series coded in 008/12 (code a, b, c, or z). - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 16, 'b', 'Not appropriate', '1XX heading in an established heading record does not represent one of the - types of series coded in 008/12 (code n) or the 1XX field contains an - unestablished heading in a reference, subdivision, or node label record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 16, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, 'a', 'a - Topical', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, 'b', 'b - Form', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, 'c', 'c - Chronological', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, 'd', 'd - Geographic', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, 'e', 'e - Language', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, 'n', 'Not applicable', '1XX heading is not an authorized subject subdivision.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 17, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '#', '# - Not a government agency', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'a', 'a - Autonomous or semi-autonomous component', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'c', 'c - Multilocal', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'f', 'f - Federal/national', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'i', 'i - International intergovernmental', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'l', 'l - Local', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'm', 'm - Multistate', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'o', 'o - Government agency-type undetermined', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 's', 's - State, provincial, territorial, dependent, etc.', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'u', 'u - Unknown if heading is government agency', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'z', 'z - Other', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'a', 'a - Tracings are consistent with the heading', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'b', 'b - Tracings are not necessarily consistent with the heading', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'n', 'Not applicable', 'Record contains no 4XX/5XX tracing fields.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 31, 'a', 'a - Record can be used', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 31, 'b', 'Record is being updated', 'Change in the record is being considered and it may not be advisable to use the - 1XX heading in bibliographic records. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 32, 'a', 'Differentiated personal name', 'Personal name in field 100 is a unique name.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 32, 'b', 'Undifferentiated personal name', 'Personal name in field 100 is used by two or more persons.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 32, 'n', 'Not applicable', '1XX heading is not a personal name or the personal name is a family name.', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 32, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'a', 'a - Fully established', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'b', 'Memorandum', '100-151 heading is fully established but it has not been used in a - bibliographic record. The authority work was done before the decision was made - to not use the heading in a bibliographic record; however, the information is - retained for probable future use. When the heading is used in a bibliographic - record, code b may be changed to code a or c. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'c', 'Provisional', '100-151 heading cannot be formulated satisfactorily because of inadequate - information. Further investigation should be made when the heading is next used - in a bibliographic record. When the needed information is available, code c may - be changed to code a. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'd', 'Preliminary', '100-151 heading is taken from a bibliographic record because the bibliographic - item is not available at the time the heading is established. When the heading - is used in a bibliographic record created from cataloging with an item in hand, - code d may be changed to code a. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'n', 'Not applicable', '1XX field contains an unestablished heading in a reference, subdivision, - reference and subdivision, or node label record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 38, '#', '# - Not modified', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 's', 'Shortened', 'Some of the data has been omitted because the record would have exceeded the - maximum length allowed by a particular system. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 'x', 'Missing characters', 'Characters that could not be converted into machine-readable form due to - character set limitations are missing from the record. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 38, '|', '| - No attempt to code', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 39, '#', '# - National bibliographic agency', '', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 39, 'c', 'Cooperative cataloging program', 'Creator of the authority data is a participant (other than a national - bibliographic agency) in a cooperative cataloging program. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 39, 'd', 'Other', 'Organization that is other than a national bibliographic agency or a - participant in a cooperative cataloging program. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 39, 'u', 'Unknown', 'Creator of the authority data is unknown. This code is used when an - organization transcribes manual authority data from an unknown source. - ', 'authority'); -SELECT evergreen.insert_update_coded_value_map('008', 39, '|', '| - No attempt to code', '', 'authority'); --- category: authority tag: 010 file: www.loc.gov/marc/authority/concise/ad010.html --- category: authority tag: 014 file: www.loc.gov/marc/authority/concise/ad014.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_014_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_014_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_014_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_014_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '014', 'a', 'Control number of related bibliographic record (NR) MARC code (enclosed in parentheses) of the organization that created the related bibliographic record, followed immediately by the bibliographic record control number. See Appendix G: Organization Code Sources for a listing of sources used in MARC 21 records.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '014', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '014', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 014 file: www.loc.gov/marc/authority/concise/ad014.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_014_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_014_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_014_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_014_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '014', 'a', 'Control number of related bibliographic record (NR) MARC code (enclosed in parentheses) of the organization that created the related bibliographic record, followed immediately by the bibliographic record control number. See Appendix G: Organization Code Sources for a listing of sources used in MARC 21 records.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '014', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '014', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 016 file: www.loc.gov/marc/authority/concise/ad016.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_016_ind_1$ident$, - BTRIM($label$First - National bibliographic agency - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_016_ind_1', '#', 'Library and Archives Canada', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_016_ind_1', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_016_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_016_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', 'a', 'Record control number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', 'z', 'Canceled or invalid record control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', '2', 'Source (NR) MARC code or the name of the organization that identifies the national bibliographic agency that was the source of the record control number. Code from: MARC Code List for Organizations.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 016 file: www.loc.gov/marc/authority/concise/ad016.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_016_ind_1$ident$, - BTRIM($label$First - National bibliographic agency - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_016_ind_1', '#', 'Library and Archives Canada', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_016_ind_1', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_016_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_016_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', 'a', 'Record control number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', 'z', 'Canceled or invalid record control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', '2', 'Source (NR) MARC code or the name of the organization that identifies the national bibliographic agency that was the source of the record control number. Code from: MARC Code List for Organizations.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '016', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 031 file: www.loc.gov/marc/authority/concise/ad031.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_031_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_031_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_031_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_031_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'b', 'Number of movement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'c', 'Number of excerpt (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'd', 'Caption or heading (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'e', 'Role (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'g', 'Clef (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'm', 'Voice/instrument (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'n', 'Key signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'o', 'Time signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'p', 'Musical notation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'q', 'General note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'r', 'Key or mode (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 's', 'Coded validity note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 't', 'Text incipit (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'y', 'Link text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', '2', 'System code (NR) MARC code that identifies the encoding system used to transcribe the musical notation in subfield $p (Musical notation). Use of subfield $2 is mandatory if subfield $p is present. Code from: Musical Incipit Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 031 file: www.loc.gov/marc/authority/concise/ad031.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_031_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_031_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_031_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_031_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'b', 'Number of movement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'c', 'Number of excerpt (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'd', 'Caption or heading (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'e', 'Role (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'g', 'Clef (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'm', 'Voice/instrument (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'n', 'Key signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'o', 'Time signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'p', 'Musical notation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'q', 'General note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'r', 'Key or mode (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 's', 'Coded validity note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 't', 'Text incipit (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'y', 'Link text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', '2', 'System code (NR) MARC code that identifies the encoding system used to transcribe the musical notation in subfield $p (Musical notation). Use of subfield $2 is mandatory if subfield $p is present. Code from: Musical Incipit Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '031', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 035 file: www.loc.gov/marc/authority/concise/ad035.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_035_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_035_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_035_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_035_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', 'a', 'System control number (NR) MARC code (enclosed in parentheses) of the organization originating the system control number, followed immediately by the number. See Appendix G: Organization Code Sources.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', 'z', 'Canceled/invalid system control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 035 file: www.loc.gov/marc/authority/concise/ad035.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_035_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_035_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_035_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_035_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', 'a', 'System control number (NR) MARC code (enclosed in parentheses) of the organization originating the system control number, followed immediately by the number. See Appendix G: Organization Code Sources.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', 'z', 'Canceled/invalid system control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '035', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 042 file: www.loc.gov/marc/authority/concise/ad042.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_042_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_042_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_042_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_042_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '042', 'a', 'Authentication code (R) If more than one code is applicable, the subfield is repeated. Code from: MARC Authentication Action Code List.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 042 file: www.loc.gov/marc/authority/concise/ad042.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_042_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_042_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_042_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_042_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '042', 'a', 'Authentication code (R) If more than one code is applicable, the subfield is repeated. Code from: MARC Authentication Action Code List.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 045 file: www.loc.gov/marc/authority/concise/ad045.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_045_ind_1$ident$, - BTRIM($label$First - Type of time period in subfield $b or $c - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '#', 'Subfield $b or $c not present', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '0', 'Single date/time', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '1', 'Multiple single dates/times', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '2', 'Range of dates/times', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_045_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', 'a', 'Time period code (R) Four-character alphanumeric code derived from the "Time Period Code Table" for B.C. and C.E. time periods. Table is found in the MARC 21 Format for Authority Data under the description of field 045, subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', 'b', 'Formatted 9999 B.C. through C.E. time period (R) Specific time period formatted as yyyymmddhh, preceded by a code for the era (c for B.C.; d for C.E.).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', 'c', 'Formatted pre-9999 B.C. time period (R) Formatted time period that consists of as many numeric characters as are needed to represent the number of pre-9999 years B.C.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 045 file: www.loc.gov/marc/authority/concise/ad045.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_045_ind_1$ident$, - BTRIM($label$First - Type of time period in subfield $b or $c - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '#', 'Subfield $b or $c not present', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '0', 'Single date/time', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '1', 'Multiple single dates/times', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_1', '2', 'Range of dates/times', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_045_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_045_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', 'a', 'Time period code (R) Four-character alphanumeric code derived from the "Time Period Code Table" for B.C. and C.E. time periods. Table is found in the MARC 21 Format for Authority Data under the description of field 045, subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', 'b', 'Formatted 9999 B.C. through C.E. time period (R) Specific time period formatted as yyyymmddhh, preceded by a code for the era (c for B.C.; d for C.E.).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', 'c', 'Formatted pre-9999 B.C. time period (R) Formatted time period that consists of as many numeric characters as are needed to represent the number of pre-9999 years B.C.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '045', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 066 file: www.loc.gov/marc/authority/concise/ad066.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_066_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_066_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_066_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_066_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '066', 'a', 'Primary G0 character set (NR) Code is composed of the Intermediate and Final characters of the escape sequence that designates and invokes the default G0 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '066', 'b', 'Primary G1 character set (NR) Code is composed of the Intermediate and Final characters of the escape sequence that designates and invokes the default G1 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '066', 'c', 'Alternate G0 or G1 character set (R) Code is composed of the Intermediate and Final characters of each escape sequence that will be used to designate an alternate graphic character set used in the record.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 066 file: www.loc.gov/marc/authority/concise/ad066.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_066_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_066_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_066_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_066_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '066', 'a', 'Primary G0 character set (NR) Code is composed of the Intermediate and Final characters of the escape sequence that designates and invokes the default G0 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '066', 'b', 'Primary G1 character set (NR) Code is composed of the Intermediate and Final characters of the escape sequence that designates and invokes the default G1 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '066', 'c', 'Alternate G0 or G1 character set (R) Code is composed of the Intermediate and Final characters of each escape sequence that will be used to designate an alternate graphic character set used in the record.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 072 file: www.loc.gov/marc/authority/concise/ad072.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_072_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_072_ind_2$ident$, - BTRIM($label$Second - Code source - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_2', '0', 'NAL subject category code list', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', 'a', 'Subject category code (NR) Code for the broad subject category to which the heading belongs in a hierarchically-arranged thesaurus.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', 'x', 'Subject category code subdivision (R) Level of specificity within the broader category coded in subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', '2', 'Code source (NR) MARC code that identifies the thesaurus used to assign the subject category code when the second indicator position of this field contains value 7. Code from: Subject Category Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 072 file: www.loc.gov/marc/authority/concise/ad072.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_072_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_072_ind_2$ident$, - BTRIM($label$Second - Code source - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_2', '0', 'NAL subject category code list', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_072_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', 'a', 'Subject category code (NR) Code for the broad subject category to which the heading belongs in a hierarchically-arranged thesaurus.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', 'x', 'Subject category code subdivision (R) Level of specificity within the broader category coded in subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', '2', 'Code source (NR) MARC code that identifies the thesaurus used to assign the subject category code when the second indicator position of this field contains value 7. Code from: Subject Category Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '072', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 073 file: www.loc.gov/marc/authority/concise/ad073.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_073_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_073_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_073_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_073_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', 'a', 'Subdivision usage (R) Category designator code that specifies the category of terms with which the subdivision may be used.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', 'z', 'Code source (NR) MARC code that identifies the thesaurus used to assign the category designator code. Code from: Subject Category Code Source Codes .','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 073 file: www.loc.gov/marc/authority/concise/ad073.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_073_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_073_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_073_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_073_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', 'a', 'Subdivision usage (R) Category designator code that specifies the category of terms with which the subdivision may be used.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', 'z', 'Code source (NR) MARC code that identifies the thesaurus used to assign the category designator code. Code from: Subject Category Code Source Codes .','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '073', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 086 file: www.loc.gov/marc/authority/concise/ad086.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_086_ind_1$ident$, - BTRIM($label$First - Number source - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_1', '#', 'Source specified in subfield $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_1', '0', 'Superintendent of Documents Classification System', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_1', '1', 'Government of Canada Publications: Outline of Classification', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_086_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', 'a', 'Call number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', 'd', 'Volumes/dates to which call number applies (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', 'z', 'Canceled/invalid call number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '2', 'Number source (NR) MARC code that identifies the government document classification system or scheme when the first indicator position contains value blank (#). Code from: Classification Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 086 file: www.loc.gov/marc/authority/concise/ad086.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_086_ind_1$ident$, - BTRIM($label$First - Number source - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_1', '#', 'Source specified in subfield $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_1', '0', 'Superintendent of Documents Classification System', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_1', '1', 'Government of Canada Publications: Outline of Classification', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_086_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_086_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', 'a', 'Call number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', 'd', 'Volumes/dates to which call number applies (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', 'z', 'Canceled/invalid call number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '2', 'Number source (NR) MARC code that identifies the government document classification system or scheme when the first indicator position contains value blank (#). Code from: Classification Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '086', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 09x file: www.loc.gov/marc/authority/concise/ad09x.html --- category: authority tag: 640 file: www.loc.gov/marc/authority/concise/ad640.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_640_ind_1$ident$, - BTRIM($label$First - Note format style - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_640_ind_1', '0', 'Formatted style', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_640_ind_1', '1', 'Unformatted style', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_640_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_640_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', 'a', 'Dates of publication and/or sequential designation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', 'z', 'Source of information (NR) Citation for the source of the information contained in subfield $a. Instruction term: Cf. may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 640 file: www.loc.gov/marc/authority/concise/ad640.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_640_ind_1$ident$, - BTRIM($label$First - Note format style - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_640_ind_1', '0', 'Formatted style', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_640_ind_1', '1', 'Unformatted style', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_640_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_640_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', 'a', 'Dates of publication and/or sequential designation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', 'z', 'Source of information (NR) Citation for the source of the information contained in subfield $a. Instruction term: Cf. may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '640', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 641 file: www.loc.gov/marc/authority/concise/ad641.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_641_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_641_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_641_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_641_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', 'a', 'Numbering peculiarities note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', 'z', 'Source of information (NR) Citation for the source of the information contained in subfield $a. Instruction term: Cf. may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 641 file: www.loc.gov/marc/authority/concise/ad641.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_641_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_641_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_641_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_641_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', 'a', 'Numbering peculiarities note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', 'z', 'Source of information (NR) Citation for the source of the information contained in subfield $a. Instruction term: Cf. may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '641', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 642 file: www.loc.gov/marc/authority/concise/ad642.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_642_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_642_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_642_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_642_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', 'a', 'Series numbering example (NR) Form of number in series a.e.: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', 'd', 'Volumes/dates to which series numbering example applies (NR) Statement used only when the series numbering example contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', '5', 'Institution/copy to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 642 file: www.loc.gov/marc/authority/concise/ad642.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_642_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_642_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_642_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_642_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', 'a', 'Series numbering example (NR) Form of number in series a.e.: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', 'd', 'Volumes/dates to which series numbering example applies (NR) Statement used only when the series numbering example contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', '5', 'Institution/copy to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '642', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 643 file: www.loc.gov/marc/authority/concise/ad643.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_643_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_643_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_643_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_643_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', 'a', 'Place (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', 'b', 'Publisher/issuing body (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', 'd', 'Volumes/dates to which place and publisher/issuing body apply (NR) Used only when the data contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 643 file: www.loc.gov/marc/authority/concise/ad643.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_643_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_643_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_643_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_643_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', 'a', 'Place (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', 'b', 'Publisher/issuing body (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', 'd', 'Volumes/dates to which place and publisher/issuing body apply (NR) Used only when the data contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '643', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 644 file: www.loc.gov/marc/authority/concise/ad644.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_644_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_644_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_644_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_644_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', 'a', 'Series analysis practice (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', 'b', 'Exceptions to analysis practice (NR) Statement identifying those items in the series to which the analysis practice code contained in subfield $a does not apply.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', 'd', 'Volumes/dates to which analysis practice applies (NR) Statement that is used only when the data contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', '5', 'Institution/copy to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 644 file: www.loc.gov/marc/authority/concise/ad644.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_644_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_644_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_644_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_644_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', 'a', 'Series analysis practice (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', 'b', 'Exceptions to analysis practice (NR) Statement identifying those items in the series to which the analysis practice code contained in subfield $a does not apply.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', 'd', 'Volumes/dates to which analysis practice applies (NR) Statement that is used only when the data contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', '5', 'Institution/copy to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '644', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 645 file: www.loc.gov/marc/authority/concise/ad645.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_645_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_645_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_645_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_645_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', 'a', 'Series tracing practice (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', 'd', 'Volumes/dates to which tracing practice applies (NR) Statement used only when the tracing practice contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', '5', 'Institution/copy to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 645 file: www.loc.gov/marc/authority/concise/ad645.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_645_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_645_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_645_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_645_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', 'a', 'Series tracing practice (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', 'd', 'Volumes/dates to which tracing practice applies (NR) Statement used only when the tracing practice contained in subfield $a does not apply to all items in the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', '5', 'Institution/copy to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '645', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 646 file: www.loc.gov/marc/authority/concise/ad646.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_646_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_646_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_646_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_646_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', 'a', 'Series classification practice (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', 'd', 'Volumes/dates to which classification practice applies (NR) Statement used only when the classification practice contained in subfield $a does not apply to all items of the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 646 file: www.loc.gov/marc/authority/concise/ad646.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_646_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_646_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_646_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_646_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', 'a', 'Series classification practice (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', 'd', 'Volumes/dates to which classification practice applies (NR) Statement used only when the classification practice contained in subfield $a does not apply to all items of the series. Applies to: may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '646', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 663 file: www.loc.gov/marc/authority/concise/ad663.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_663_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_663_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_663_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_663_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', 'a', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', 'b', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', 't', 'Title referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 663 file: www.loc.gov/marc/authority/concise/ad663.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_663_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_663_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_663_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_663_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', 'a', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', 'b', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', 't', 'Title referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '663', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 664 file: www.loc.gov/marc/authority/concise/ad664.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_664_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_664_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_664_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_664_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', 'a', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', 'b', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', 't', 'Title referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 664 file: www.loc.gov/marc/authority/concise/ad664.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_664_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_664_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_664_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_664_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', 'a', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', 'b', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', 't', 'Title referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '664', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 665 file: www.loc.gov/marc/authority/concise/ad665.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_665_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_665_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_665_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_665_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '665', 'a', 'History reference (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '665', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '665', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 665 file: www.loc.gov/marc/authority/concise/ad665.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_665_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_665_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_665_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_665_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '665', 'a', 'History reference (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '665', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '665', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 666 file: www.loc.gov/marc/authority/concise/ad666.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_666_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_666_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_666_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_666_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '666', 'a', 'General explanatory reference (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '666', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '666', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 666 file: www.loc.gov/marc/authority/concise/ad666.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_666_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_666_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_666_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_666_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '666', 'a', 'General explanatory reference (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '666', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '666', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 667 file: www.loc.gov/marc/authority/concise/ad667.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_667_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_667_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_667_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_667_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', 'a', 'Nonpublic general note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 667 file: www.loc.gov/marc/authority/concise/ad667.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_667_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_667_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_667_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_667_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', 'a', 'Nonpublic general note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '667', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 681 file: www.loc.gov/marc/authority/concise/ad681.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_681_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_681_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_681_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_681_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', 'a', 'Subject heading or subdivision term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', 'i', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 681 file: www.loc.gov/marc/authority/concise/ad681.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_681_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_681_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_681_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_681_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', 'a', 'Subject heading or subdivision term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', 'i', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '681', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 682 file: www.loc.gov/marc/authority/concise/ad682.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_682_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_682_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_682_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_682_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', 'a', 'Replacement heading (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', 'i', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', '0', 'Replacement authority record control number (R) System control number of the replacement authority record preceded by the MARC code, enclosed in parentheses, for the agency to which the control number applies. See Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 682 file: www.loc.gov/marc/authority/concise/ad682.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_682_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_682_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_682_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_682_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', 'a', 'Replacement heading (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', 'i', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', '0', 'Replacement authority record control number (R) System control number of the replacement authority record preceded by the MARC code, enclosed in parentheses, for the agency to which the control number applies. See Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '682', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 688 file: www.loc.gov/marc/authority/concise/ad688.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_688_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_688_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_688_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_688_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', 'a', 'Application history note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 688 file: www.loc.gov/marc/authority/concise/ad688.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_688_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_688_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_688_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_688_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', 'a', 'Application history note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '688', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 880 file: www.loc.gov/marc/authority/concise/ad880.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_880_ind_1$ident$, - BTRIM($label$First - Same as associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_880_ind_2$ident$, - BTRIM($label$Second - Same as associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'a', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'b', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'c', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'd', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'e', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'f', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'g', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'h', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'i', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'j', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'k', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'l', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'm', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'n', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'o', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'p', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'q', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'r', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 's', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 't', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'u', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'v', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'w', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'x', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'y', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'z', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '0', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '1', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '2', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '3', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '4', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '5', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '7', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '8', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '9', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 880 file: www.loc.gov/marc/authority/concise/ad880.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_880_ind_1$ident$, - BTRIM($label$First - Same as associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_880_ind_2$ident$, - BTRIM($label$Second - Same as associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'a', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'b', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'c', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'd', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'e', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'f', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'g', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'h', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'i', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'j', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'k', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'l', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'm', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'n', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'o', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'p', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'q', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'r', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 's', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 't', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'u', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'v', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'w', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'x', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'y', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', 'z', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '0', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '1', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '2', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '3', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '4', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '5', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '7', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '8', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '9', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '880', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 001 file: www.loc.gov/marc/bibliographic/concise/bd001.html --- category: biblio tag: 003 file: www.loc.gov/marc/bibliographic/concise/bd003.html --- category: biblio tag: 005 file: www.loc.gov/marc/bibliographic/concise/bd005.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007f.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007o.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007q.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007r.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007t.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007z.html --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008.html --- category: biblio tag: 010 file: www.loc.gov/marc/bibliographic/concise/bd010.html --- category: biblio tag: 013 file: www.loc.gov/marc/bibliographic/concise/bd013.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_013_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_013_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_013_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_013_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'a', 'Number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'b', 'Country (NR) Code representing the country or jurisdiction associated with the patent document. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'c', 'Type of number (NR) Type of patent document identifier','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'd', 'Date (R) Date a patent or certificate was granted, or the date of acceptance of an application. The date requires 8 numeric characters in the pattern yyyymmdd (4 for the year, 2 for the month, and 2 for the day).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'e', 'Status (R) Text that explains or clarifies the status of the patent document identified by the number in the field.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'f', 'Party to document (R) Information that identifies the country or agency that is party to the document, usually an application for patent or related document. Codes from: MARC Code List for Countries and MARC Code List for Organizations.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 013 file: www.loc.gov/marc/bibliographic/concise/bd013.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_013_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_013_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_013_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_013_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'a', 'Number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'b', 'Country (NR) Code representing the country or jurisdiction associated with the patent document. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'c', 'Type of number (NR) Type of patent document identifier','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'd', 'Date (R) Date a patent or certificate was granted, or the date of acceptance of an application. The date requires 8 numeric characters in the pattern yyyymmdd (4 for the year, 2 for the month, and 2 for the day).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'e', 'Status (R) Text that explains or clarifies the status of the patent document identified by the number in the field.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', 'f', 'Party to document (R) Information that identifies the country or agency that is party to the document, usually an application for patent or related document. Codes from: MARC Code List for Countries and MARC Code List for Organizations.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '013', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 016 file: www.loc.gov/marc/bibliographic/concise/bd016.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_016_ind_1$ident$, - BTRIM($label$First - National bibliographic agency - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_016_ind_1', '#', 'Library and Archives Canada', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_016_ind_1', '7', 'Source specified in subfield $2 - Used when the source of the control number is indicated by a code in subfield - $2. Codes from: MARC Code List for Organizations.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_016_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_016_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', 'a', 'Record control number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', 'z', 'Canceled/invalid control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', '2', 'Source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 016 file: www.loc.gov/marc/bibliographic/concise/bd016.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_016_ind_1$ident$, - BTRIM($label$First - National bibliographic agency - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_016_ind_1', '#', 'Library and Archives Canada', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_016_ind_1', '7', 'Source specified in subfield $2 - Used when the source of the control number is indicated by a code in subfield - $2. Codes from: MARC Code List for Organizations.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_016_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_016_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', 'a', 'Record control number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', 'z', 'Canceled/invalid control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', '2', 'Source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '016', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 018 file: www.loc.gov/marc/bibliographic/concise/bd018.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_018_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_018_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_018_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_018_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '018', 'a', 'Copyright article-fee code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '018', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '018', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 018 file: www.loc.gov/marc/bibliographic/concise/bd018.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_018_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_018_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_018_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_018_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '018', 'a', 'Copyright article-fee code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '018', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '018', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 025 file: www.loc.gov/marc/bibliographic/concise/bd025.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_025_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_025_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_025_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_025_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '025', 'a', 'Overseas acquisition number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '025', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 025 file: www.loc.gov/marc/bibliographic/concise/bd025.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_025_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_025_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_025_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_025_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '025', 'a', 'Overseas acquisition number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '025', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 026 file: www.loc.gov/marc/bibliographic/concise/bd026.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_026_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_026_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_026_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_026_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'a', 'First and second groups of characters (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'b', 'Third and fourth groups of characters (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'c', 'Date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'd', 'Number of volume or part (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'e', 'Unparsed fingerprint (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '2', 'Source (NR) MARC code that identifies the guidelines followed to establish the fingerprint. Code from: Fingerprint Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 026 file: www.loc.gov/marc/bibliographic/concise/bd026.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_026_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_026_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_026_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_026_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'a', 'First and second groups of characters (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'b', 'Third and fourth groups of characters (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'c', 'Date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'd', 'Number of volume or part (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', 'e', 'Unparsed fingerprint (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '2', 'Source (NR) MARC code that identifies the guidelines followed to establish the fingerprint. Code from: Fingerprint Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '026', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 030 file: www.loc.gov/marc/bibliographic/concise/bd030.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_030_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_030_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_030_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_030_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', 'a', 'CODEN (NR) Valid CODEN for the title.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', 'z', 'Canceled/invalid CODEN (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 030 file: www.loc.gov/marc/bibliographic/concise/bd030.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_030_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_030_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_030_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_030_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', 'a', 'CODEN (NR) Valid CODEN for the title.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', 'z', 'Canceled/invalid CODEN (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '030', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 031 file: www.loc.gov/marc/bibliographic/concise/bd031.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_031_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_031_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_031_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_031_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'a', 'Number of work (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'b', 'Number of movement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'c', 'Number of excerpt (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'd', 'Caption or heading (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'e', 'Role (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'g', 'Clef (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'm', 'Voice/instrument (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'n', 'Key signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'o', 'Time signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'p', 'Musical notation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'q', 'General note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'r', 'Key or mode (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 's', 'Coded validity note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 't', 'Text incipit (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'y', 'Link text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', '2', 'System code (NR) MARC code that identifies the encoding system used to transcribe the musical notation in subfield $p (Musical notation). Use of subfield $2 is mandatory if subfield $p is present. Code from: Musical Incipit Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 031 file: www.loc.gov/marc/bibliographic/concise/bd031.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_031_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_031_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_031_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_031_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'a', 'Number of work (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'b', 'Number of movement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'c', 'Number of excerpt (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'd', 'Caption or heading (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'e', 'Role (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'g', 'Clef (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'm', 'Voice/instrument (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'n', 'Key signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'o', 'Time signature (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'p', 'Musical notation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'q', 'General note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'r', 'Key or mode (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 's', 'Coded validity note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 't', 'Text incipit (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'y', 'Link text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', '2', 'System code (NR) MARC code that identifies the encoding system used to transcribe the musical notation in subfield $p (Musical notation). Use of subfield $2 is mandatory if subfield $p is present. Code from: Musical Incipit Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '031', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 032 file: www.loc.gov/marc/bibliographic/concise/bd032.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_032_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_032_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_032_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_032_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', 'a', 'Postal registration number (NR) Numbers are right justified and each unused position contains a zero. The hyphen that may appear between the third and fourth digits on printed sources is not carried in the MARC record; it may be generated.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', 'b', 'Source agency assigning number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 032 file: www.loc.gov/marc/bibliographic/concise/bd032.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_032_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_032_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_032_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_032_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', 'a', 'Postal registration number (NR) Numbers are right justified and each unused position contains a zero. The hyphen that may appear between the third and fourth digits on printed sources is not carried in the MARC record; it may be generated.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', 'b', 'Source agency assigning number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '032', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 035 file: www.loc.gov/marc/bibliographic/concise/bd035.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_035_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_035_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_035_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_035_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', 'a', 'System control number (NR) MARC code (enclosed in parentheses) of the organization originating the system control number, followed immediately by the number. See Appendix I: Organization Code Sources for a listing of sources used in MARC 21 records.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', 'z', 'Canceled/invalid control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 035 file: www.loc.gov/marc/bibliographic/concise/bd035.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_035_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_035_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_035_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_035_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', 'a', 'System control number (NR) MARC code (enclosed in parentheses) of the organization originating the system control number, followed immediately by the number. See Appendix I: Organization Code Sources for a listing of sources used in MARC 21 records.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', 'z', 'Canceled/invalid control number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '035', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 036 file: www.loc.gov/marc/bibliographic/concise/bd036.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_036_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_036_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_036_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_036_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', 'a', 'Original study number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', 'b', 'Source agency assigning number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 036 file: www.loc.gov/marc/bibliographic/concise/bd036.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_036_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_036_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_036_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_036_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', 'a', 'Original study number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', 'b', 'Source agency assigning number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '036', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 038 file: www.loc.gov/marc/bibliographic/concise/bd038.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_038_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_038_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_038_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_038_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '038', 'a', 'Record content licensor (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '038', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '038', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 038 file: www.loc.gov/marc/bibliographic/concise/bd038.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_038_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_038_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_038_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_038_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '038', 'a', 'Record content licensor (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '038', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '038', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 042 file: www.loc.gov/marc/bibliographic/concise/bd042.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_042_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_042_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_042_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_042_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '042', 'a', 'Authentication code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 042 file: www.loc.gov/marc/bibliographic/concise/bd042.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_042_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_042_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_042_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_042_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '042', 'a', 'Authentication code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 044 file: www.loc.gov/marc/bibliographic/concise/bd044.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_044_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_044_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_044_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_044_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', 'a', 'MARC country code (R) Code appearing in 008/15-17 is given as the first subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', 'b', 'Local subentity code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', 'c', 'ISO country code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', '2', 'Source of local subentity code (R) Source from which the local code was assigned. Code from: Country Code and Term Source Codes.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 044 file: www.loc.gov/marc/bibliographic/concise/bd044.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_044_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_044_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_044_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_044_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', 'a', 'MARC country code (R) Code appearing in 008/15-17 is given as the first subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', 'b', 'Local subentity code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', 'c', 'ISO country code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', '2', 'Source of local subentity code (R) Source from which the local code was assigned. Code from: Country Code and Term Source Codes.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '044', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 045 file: www.loc.gov/marc/bibliographic/concise/bd045.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_045_ind_1$ident$, - BTRIM($label$First - Type of time period in subfield $b or $c - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '#', 'Subfield $b or $c not present', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '0', 'Single date/time', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '1', 'Multiple single dates/times - Multiple $b and/or $c subfields are present, each - containing a date/time.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '2', 'Range of dates/times - Two $b and/or $c subfields are present and contain a - range of dates/times.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_045_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', 'a', 'Time period code (R) Four-character alphanumeric code derived from the "Time Period Code Table" for B.C. and A.D. time periods. Table is found in MARC 21 Format for Bibliographic Data under the description of field 045.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', 'b', 'Formatted 9999 B.C. through C.E. time period (R) Specific time period recorded in the pattern yyyymmddhh and preceded by a code for the era (c for B.C.; d for C.E.).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', 'c', 'Formatted pre-9999 B.C. time period (R) Formatted time period that consists of as many numeric characters as are needed to represent the number of pre-9999 years B.C.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 045 file: www.loc.gov/marc/bibliographic/concise/bd045.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_045_ind_1$ident$, - BTRIM($label$First - Type of time period in subfield $b or $c - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '#', 'Subfield $b or $c not present', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '0', 'Single date/time', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '1', 'Multiple single dates/times - Multiple $b and/or $c subfields are present, each - containing a date/time.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_1', '2', 'Range of dates/times - Two $b and/or $c subfields are present and contain a - range of dates/times.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_045_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_045_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', 'a', 'Time period code (R) Four-character alphanumeric code derived from the "Time Period Code Table" for B.C. and A.D. time periods. Table is found in MARC 21 Format for Bibliographic Data under the description of field 045.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', 'b', 'Formatted 9999 B.C. through C.E. time period (R) Specific time period recorded in the pattern yyyymmddhh and preceded by a code for the era (c for B.C.; d for C.E.).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', 'c', 'Formatted pre-9999 B.C. time period (R) Formatted time period that consists of as many numeric characters as are needed to represent the number of pre-9999 years B.C.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '045', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 047 file: www.loc.gov/marc/bibliographic/concise/bd047.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_047_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_047_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_047_ind_2$ident$, - BTRIM($label$Second - Source of code - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_047_ind_2', '#', 'MARC musical composition code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_047_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '047', 'a', 'Form of musical composition code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '047', '2', 'Source of code (NR) A code that identifies the source from which the musical composition code was assigned. Code from: Musical Composition Form Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '047', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 047 file: www.loc.gov/marc/bibliographic/concise/bd047.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_047_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_047_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_047_ind_2$ident$, - BTRIM($label$Second - Source of code - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_047_ind_2', '#', 'MARC musical composition code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_047_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '047', 'a', 'Form of musical composition code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '047', '2', 'Source of code (NR) A code that identifies the source from which the musical composition code was assigned. Code from: Musical Composition Form Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '047', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 048 file: www.loc.gov/marc/bibliographic/concise/bd048.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_048_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_048_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_048_ind_2$ident$, - BTRIM($label$Second - Source of code - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_048_ind_2', '#', 'MARC code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_048_ind_2', '7', 'Source specified in subfield ‡2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', 'a', 'Performer or ensemble (R) Two-character code for a performer or ensemble (from the list below) and, if applicable, a two-digit number specifying the number of parts.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', 'b', 'Soloist (R) Two-character alphabetic code for a soloist (from the list below) and, if applicable, a two-digit number specifying the number of parts.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', '2', 'Source of code (NR) Code from: Musical Instrumentation and Voice Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields. MARC 21 Instruments or Voices Codes','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 048 file: www.loc.gov/marc/bibliographic/concise/bd048.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_048_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_048_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_048_ind_2$ident$, - BTRIM($label$Second - Source of code - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_048_ind_2', '#', 'MARC code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_048_ind_2', '7', 'Source specified in subfield ‡2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', 'a', 'Performer or ensemble (R) Two-character code for a performer or ensemble (from the list below) and, if applicable, a two-digit number specifying the number of parts.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', 'b', 'Soloist (R) Two-character alphabetic code for a soloist (from the list below) and, if applicable, a two-digit number specifying the number of parts.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', '2', 'Source of code (NR) Code from: Musical Instrumentation and Voice Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '048', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields. MARC 21 Instruments or Voices Codes','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 051 file: www.loc.gov/marc/bibliographic/concise/bd051.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_051_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_051_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_051_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_051_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', 'b', 'Item number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', 'c', 'Copy information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 051 file: www.loc.gov/marc/bibliographic/concise/bd051.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_051_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_051_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_051_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_051_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', 'b', 'Item number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', 'c', 'Copy information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '051', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 061 file: www.loc.gov/marc/bibliographic/concise/bd061.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_061_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_061_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_061_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_061_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', 'b', 'Item number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', 'c', 'Copy information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 061 file: www.loc.gov/marc/bibliographic/concise/bd061.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_061_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_061_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_061_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_061_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', 'b', 'Item number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', 'c', 'Copy information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '061', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 066 file: www.loc.gov/marc/bibliographic/concise/bd066.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_066_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_066_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_066_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_066_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '066', 'a', 'Primary G0 character set (NR) Code is the Intermediate and Final characters of the escape sequence that designates and invokes the default G0 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '066', 'b', 'Primary G1 character set (NR) Code is composed of the Intermediate and Final characters of the escape sequence that designates and invokes the default G1 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '066', 'c', 'Alternate G0 or G1 character set (R) Code is the Intermediate and Final characters of each escape sequence that will be used to designate an alternate graphic character set used in the record.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 066 file: www.loc.gov/marc/bibliographic/concise/bd066.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_066_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_066_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_066_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_066_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '066', 'a', 'Primary G0 character set (NR) Code is the Intermediate and Final characters of the escape sequence that designates and invokes the default G0 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '066', 'b', 'Primary G1 character set (NR) Code is composed of the Intermediate and Final characters of the escape sequence that designates and invokes the default G1 character set.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '066', 'c', 'Alternate G0 or G1 character set (R) Code is the Intermediate and Final characters of each escape sequence that will be used to designate an alternate graphic character set used in the record.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 071 file: www.loc.gov/marc/bibliographic/concise/bd071.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_071_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_071_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_071_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_071_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', 'b', 'Item number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', 'c', 'Copy information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 071 file: www.loc.gov/marc/bibliographic/concise/bd071.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_071_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_071_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_071_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_071_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', 'b', 'Item number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', 'c', 'Copy information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '071', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 072 file: www.loc.gov/marc/bibliographic/concise/bd072.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_072_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_072_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_072_ind_2$ident$, - BTRIM($label$Second - Code source - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_072_ind_2', '0', 'NAL subject category code list', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_072_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', 'a', 'Subject category code (NR) Code for the broad subject associated with the item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', 'x', 'Subject category code subdivision (R) Level of specificity within the broader category coded in subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', '2', 'Source (NR) MARC code that identifies the thesaurus used to assign the subject category code when the second indicator position contains value 7. Code from: Subject Category Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 072 file: www.loc.gov/marc/bibliographic/concise/bd072.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_072_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_072_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_072_ind_2$ident$, - BTRIM($label$Second - Code source - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_072_ind_2', '0', 'NAL subject category code list', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_072_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', 'a', 'Subject category code (NR) Code for the broad subject associated with the item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', 'x', 'Subject category code subdivision (R) Level of specificity within the broader category coded in subfield $a.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', '2', 'Source (NR) MARC code that identifies the thesaurus used to assign the subject category code when the second indicator position contains value 7. Code from: Subject Category Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '072', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 074 file: www.loc.gov/marc/bibliographic/concise/bd074.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_074_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_074_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_074_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_074_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '074', 'a', 'GPO item number (NR) GPO Item No. : may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '074', 'z', 'Canceled/invalid GPO item number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '074', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 074 file: www.loc.gov/marc/bibliographic/concise/bd074.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_074_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_074_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_074_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_074_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '074', 'a', 'GPO item number (NR) GPO Item No. : may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '074', 'z', 'Canceled/invalid GPO item number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '074', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 09x file: www.loc.gov/marc/bibliographic/concise/bd09x.html --- category: biblio tag: 222 file: www.loc.gov/marc/bibliographic/concise/bd222.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_222_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_222_ind_2$ident$, - BTRIM($label$Second - Nonfiling characters - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', 'a', 'Key title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', 'b', 'Qualifying information (NR) Parenthetical information that that qualifies the title to make it unique.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 222 file: www.loc.gov/marc/bibliographic/concise/bd222.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_222_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_222_ind_2$ident$, - BTRIM($label$Second - Nonfiling characters - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_222_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', 'a', 'Key title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', 'b', 'Qualifying information (NR) Parenthetical information that that qualifies the title to make it unique.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '222', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 242 file: www.loc.gov/marc/bibliographic/concise/bd242.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_242_ind_1$ident$, - BTRIM($label$First - Title added entry - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_1', '0', 'No added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_1', '1', 'Added entry', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_242_ind_2$ident$, - BTRIM($label$Second - Nonfiling characters - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'a', 'Title (NR) Title proper, exclusive of the designation of number or name of part and any alternative title.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'b', 'Remainder of title (NR) Includes parallel, alternative, and other title information.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'c', 'Statement of responsibility, etc. (NR) Statement of responsibility and/or any remaining title statement data that are not more appropriately contained in one of the other subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'h', 'Medium (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'n', 'Number of part/section of a work (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'p', 'Name of part/section of a work (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'y', 'Language code of translated title (NR) Code from: MARC Code List for Languages.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 242 file: www.loc.gov/marc/bibliographic/concise/bd242.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_242_ind_1$ident$, - BTRIM($label$First - Title added entry - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_1', '0', 'No added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_1', '1', 'Added entry', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_242_ind_2$ident$, - BTRIM($label$Second - Nonfiling characters - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_242_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'a', 'Title (NR) Title proper, exclusive of the designation of number or name of part and any alternative title.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'b', 'Remainder of title (NR) Includes parallel, alternative, and other title information.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'c', 'Statement of responsibility, etc. (NR) Statement of responsibility and/or any remaining title statement data that are not more appropriately contained in one of the other subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'h', 'Medium (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'n', 'Number of part/section of a work (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'p', 'Name of part/section of a work (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', 'y', 'Language code of translated title (NR) Code from: MARC Code List for Languages.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '242', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 254 file: www.loc.gov/marc/bibliographic/concise/bd254.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_254_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_254_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_254_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_254_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '254', 'a', 'Musical presentation statement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '254', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '254', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 254 file: www.loc.gov/marc/bibliographic/concise/bd254.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_254_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_254_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_254_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_254_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '254', 'a', 'Musical presentation statement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '254', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '254', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 258 file: www.loc.gov/marc/bibliographic/concise/bd258.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_258_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_258_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_258_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_258_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', 'a', 'Issuing jurisdiction (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', 'b', 'Denomination (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 258 file: www.loc.gov/marc/bibliographic/concise/bd258.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_258_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_258_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_258_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_258_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', 'a', 'Issuing jurisdiction (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', 'b', 'Denomination (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '258', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 263 file: www.loc.gov/marc/bibliographic/concise/bd263.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_263_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_263_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_263_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_263_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '263', 'a', 'Projected publication date (NR) Six-digit date recorded in the pattern yyyymm (4 digits for the year; 2 digits for the month). A hyphen (-) is used for an unknown portion of the date.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '263', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '263', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 263 file: www.loc.gov/marc/bibliographic/concise/bd263.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_263_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_263_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_263_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_263_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '263', 'a', 'Projected publication date (NR) Six-digit date recorded in the pattern yyyymm (4 digits for the year; 2 digits for the month). A hyphen (-) is used for an unknown portion of the date.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '263', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '263', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 306 file: www.loc.gov/marc/bibliographic/concise/bd306.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_306_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_306_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_306_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_306_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '306', 'a', 'Playing time (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '306', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '306', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 306 file: www.loc.gov/marc/bibliographic/concise/bd306.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_306_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_306_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_306_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_306_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '306', 'a', 'Playing time (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '306', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '306', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 307 file: www.loc.gov/marc/bibliographic/concise/bd307.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_307_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_307_ind_1', '#', 'Hours', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_307_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_307_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_307_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', 'a', 'Hours (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', 'b', 'Additional information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 307 file: www.loc.gov/marc/bibliographic/concise/bd307.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_307_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_307_ind_1', '#', 'Hours', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_307_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_307_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_307_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', 'a', 'Hours (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', 'b', 'Additional information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '307', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 342 file: www.loc.gov/marc/bibliographic/concise/bd342.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_342_ind_1$ident$, - BTRIM($label$First - Geospatial reference dimension - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_1', '0', 'Horizontal coordinate system', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_1', '1', 'Vertical coordinate system', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_342_ind_2$ident$, - BTRIM($label$Second - Geospatial reference method - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '0', 'Geographic', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '1', 'Map projection', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '2', 'Grid coordinate system', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '3', 'Local planar', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '4', 'Local', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '5', 'Geodetic model', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '6', 'Altitude', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '7', 'Method specified in $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '8', 'Depth', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'a', 'Name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'b', 'Coordinate units or distance units (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'c', 'Latitude resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'd', 'Longitude resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'e', 'Standard parallel or oblique line latitude (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'f', 'Oblique line longitude (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'g', 'Longitude of central meridian or projection center (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'h', 'Latitude of projection center or projection origin (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'i', 'False easting (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'j', 'False northing (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'k', 'Scale factor (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'l', 'Height of perspective point above surface (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'm', 'Azimuthal angle (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'n', 'Azimuth measure point longitude or straight vertical longitude from pole (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'o', 'Landsat number and path number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'p', 'Zone identifier (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'q', 'Ellipsoid name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'r', 'Semi-major axis (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 's', 'Denominator of flattening ratio (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 't', 'Vertical resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'u', 'Vertical encoding method (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'v', 'Local planar, local, or other projection or grid description (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'w', 'Local planar or local georeference information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', '2', 'Reference method used (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 342 file: www.loc.gov/marc/bibliographic/concise/bd342.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_342_ind_1$ident$, - BTRIM($label$First - Geospatial reference dimension - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_1', '0', 'Horizontal coordinate system', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_1', '1', 'Vertical coordinate system', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_342_ind_2$ident$, - BTRIM($label$Second - Geospatial reference method - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '0', 'Geographic', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '1', 'Map projection', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '2', 'Grid coordinate system', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '3', 'Local planar', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '4', 'Local', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '5', 'Geodetic model', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '6', 'Altitude', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '7', 'Method specified in $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_342_ind_2', '8', 'Depth', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'a', 'Name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'b', 'Coordinate units or distance units (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'c', 'Latitude resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'd', 'Longitude resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'e', 'Standard parallel or oblique line latitude (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'f', 'Oblique line longitude (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'g', 'Longitude of central meridian or projection center (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'h', 'Latitude of projection center or projection origin (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'i', 'False easting (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'j', 'False northing (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'k', 'Scale factor (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'l', 'Height of perspective point above surface (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'm', 'Azimuthal angle (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'n', 'Azimuth measure point longitude or straight vertical longitude from pole (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'o', 'Landsat number and path number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'p', 'Zone identifier (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'q', 'Ellipsoid name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'r', 'Semi-major axis (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 's', 'Denominator of flattening ratio (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 't', 'Vertical resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'u', 'Vertical encoding method (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'v', 'Local planar, local, or other projection or grid description (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', 'w', 'Local planar or local georeference information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', '2', 'Reference method used (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '342', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 343 file: www.loc.gov/marc/bibliographic/concise/bd343.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_343_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_343_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_343_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_343_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'a', 'Planar coordinate encoding method (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'b', 'Planar distance units (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'c', 'Abscissa resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'd', 'Ordinate resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'e', 'Distance resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'f', 'Bearing resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'g', 'Bearing units (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'h', 'Bearing reference direction (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'i', 'Bearing reference meridian (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 343 file: www.loc.gov/marc/bibliographic/concise/bd343.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_343_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_343_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_343_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_343_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'a', 'Planar coordinate encoding method (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'b', 'Planar distance units (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'c', 'Abscissa resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'd', 'Ordinate resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'e', 'Distance resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'f', 'Bearing resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'g', 'Bearing units (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'h', 'Bearing reference direction (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', 'i', 'Bearing reference meridian (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '343', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 351 file: www.loc.gov/marc/bibliographic/concise/bd351.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_351_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_351_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_351_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_351_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', 'a', 'Organization (R) Manner in which the described materials are subdivided into smaller units, such as how record groups are divided into series and series into subseries. For computer files, contains information about the file structure or the name of the computer software or system.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', 'b', 'Arrangement (R) Pattern of arrangement of materials within a unit (e.g., alphabetical, chronological, by country, by office of origin, etc.).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', 'c', 'Hierarchical level (NR) Hierarchical position of the described materials relative to other records from the same source.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', '3', 'Materials specified (NR) Part of the described materials to which the field applies.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 351 file: www.loc.gov/marc/bibliographic/concise/bd351.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_351_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_351_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_351_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_351_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', 'a', 'Organization (R) Manner in which the described materials are subdivided into smaller units, such as how record groups are divided into series and series into subseries. For computer files, contains information about the file structure or the name of the computer software or system.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', 'b', 'Arrangement (R) Pattern of arrangement of materials within a unit (e.g., alphabetical, chronological, by country, by office of origin, etc.).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', 'c', 'Hierarchical level (NR) Hierarchical position of the described materials relative to other records from the same source.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', '3', 'Materials specified (NR) Part of the described materials to which the field applies.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '351', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 352 file: www.loc.gov/marc/bibliographic/concise/bd352.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_352_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_352_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_352_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_352_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'a', 'Direct reference method (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'b', 'Object type (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'c', 'Object count (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'd', 'Row count (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'e', 'Column count (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'f', 'Vertical count (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'g', 'VPF topology level (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'i', 'Indirect reference description (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'q', 'Format of the digital image (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 352 file: www.loc.gov/marc/bibliographic/concise/bd352.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_352_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_352_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_352_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_352_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'a', 'Direct reference method (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'b', 'Object type (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'c', 'Object count (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'd', 'Row count (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'e', 'Column count (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'f', 'Vertical count (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'g', 'VPF topology level (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'i', 'Indirect reference description (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', 'q', 'Format of the digital image (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '352', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 355 file: www.loc.gov/marc/bibliographic/concise/bd355.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_355_ind_1$ident$, - BTRIM($label$First - Controlled element - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '0', 'Document', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '1', 'Title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '2', 'Abstract', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '3', 'Contents note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '4', 'Author', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '5', 'Record', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '8', 'None of the above', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_355_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'a', 'Security classification (NR) Security classification (e.g., Unclassified, Secret, Confidential) associated with the document, title, abstract, contents note, or author.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'b', 'Handling instructions (R) Handling instructions, e.g., who internally in the organization may handle or see the document, title, abstract, contents note, or author.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'c', 'External dissemination information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'd', 'Downgrading or declassification event (NR) Data about the security classification, often a phrase pertaining to downgrading or declassification, e.g., OADR (which stands for "Original Agency Determination Required"). Dates relating to the downgrading or declassification are recorded in subfields $g or $h.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'e', 'Classification system (NR) Name of a security classification system, not necessarily come from a controlled list.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'f', 'Country of origin code (NR) Two- or three-character alphabetic MARC code indicating the country of origin of the classification. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'g', 'Downgrading date (NR) Date pertaining to the downgrading of the document, title, abstract, contents note, or author. Downgrading involves changes to security classification, from a higher level to lower level of classification.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'h', 'Declassification date (NR) Date pertaining to the declassification of the document, title, abstract, contents note, or author. Declassification involves the removal of any security classification on an item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'j', 'Authorization (R) Information that identifies by whose authority a change in security classification was made. The subfield contains a MARC code of the authorizing agency. See Appendix I: Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 355 file: www.loc.gov/marc/bibliographic/concise/bd355.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_355_ind_1$ident$, - BTRIM($label$First - Controlled element - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '0', 'Document', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '1', 'Title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '2', 'Abstract', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '3', 'Contents note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '4', 'Author', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '5', 'Record', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_1', '8', 'None of the above', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_355_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_355_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'a', 'Security classification (NR) Security classification (e.g., Unclassified, Secret, Confidential) associated with the document, title, abstract, contents note, or author.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'b', 'Handling instructions (R) Handling instructions, e.g., who internally in the organization may handle or see the document, title, abstract, contents note, or author.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'c', 'External dissemination information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'd', 'Downgrading or declassification event (NR) Data about the security classification, often a phrase pertaining to downgrading or declassification, e.g., OADR (which stands for "Original Agency Determination Required"). Dates relating to the downgrading or declassification are recorded in subfields $g or $h.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'e', 'Classification system (NR) Name of a security classification system, not necessarily come from a controlled list.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'f', 'Country of origin code (NR) Two- or three-character alphabetic MARC code indicating the country of origin of the classification. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'g', 'Downgrading date (NR) Date pertaining to the downgrading of the document, title, abstract, contents note, or author. Downgrading involves changes to security classification, from a higher level to lower level of classification.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'h', 'Declassification date (NR) Date pertaining to the declassification of the document, title, abstract, contents note, or author. Declassification involves the removal of any security classification on an item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', 'j', 'Authorization (R) Information that identifies by whose authority a change in security classification was made. The subfield contains a MARC code of the authorizing agency. See Appendix I: Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '355', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 357 file: www.loc.gov/marc/bibliographic/concise/bd357.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_357_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_357_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_357_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_357_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'a', 'Originator control term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'b', 'Originating agency (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'c', 'Authorized recipients of material (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'g', 'Other restrictions (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 357 file: www.loc.gov/marc/bibliographic/concise/bd357.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_357_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_357_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_357_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_357_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'a', 'Originator control term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'b', 'Originating agency (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'c', 'Authorized recipients of material (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', 'g', 'Other restrictions (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '357', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 362 file: www.loc.gov/marc/bibliographic/concise/bd362.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_362_ind_1$ident$, - BTRIM($label$First - Format of date - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_362_ind_1', '0', 'Formatted style', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_362_ind_1', '1', 'Unformatted note', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_362_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_362_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', 'a', 'Dates of publication and/or sequential designation (NR) When both a sequential designation and a chronological designation are given, the chronological one is enclosed in parentheses.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', 'z', 'Source of information (NR) Citation of the source of information contained in subfield $a; used only when the first indicator position contains value 1 (unformatted notes).','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 362 file: www.loc.gov/marc/bibliographic/concise/bd362.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_362_ind_1$ident$, - BTRIM($label$First - Format of date - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_362_ind_1', '0', 'Formatted style', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_362_ind_1', '1', 'Unformatted note', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_362_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_362_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', 'a', 'Dates of publication and/or sequential designation (NR) When both a sequential designation and a chronological designation are given, the chronological one is enclosed in parentheses.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', 'z', 'Source of information (NR) Citation of the source of information contained in subfield $a; used only when the first indicator position contains value 1 (unformatted notes).','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '362', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 365 file: www.loc.gov/marc/bibliographic/concise/bd365.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_365_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_365_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_365_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_365_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'a', 'Price type code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'b', 'Price amount (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'c', 'Currency code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'd', 'Unit of pricing (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'e', 'Price note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'f', 'Price effective from (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'g', 'Price effective until (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'h', 'Tax rate 1 (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'i', 'Tax rate 2 (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'j', 'ISO country code (NR) Code from: ISO 3166-1, Codes for the Representation of Names of Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'k', 'MARC country code (NR) Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'm', 'Identification of pricing entity (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', '2', 'Source of price type code (NR) Code from: Price Type Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 365 file: www.loc.gov/marc/bibliographic/concise/bd365.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_365_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_365_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_365_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_365_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'a', 'Price type code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'b', 'Price amount (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'c', 'Currency code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'd', 'Unit of pricing (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'e', 'Price note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'f', 'Price effective from (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'g', 'Price effective until (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'h', 'Tax rate 1 (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'i', 'Tax rate 2 (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'j', 'ISO country code (NR) Code from: ISO 3166-1, Codes for the Representation of Names of Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'k', 'MARC country code (NR) Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', 'm', 'Identification of pricing entity (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', '2', 'Source of price type code (NR) Code from: Price Type Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '365', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 366 file: www.loc.gov/marc/bibliographic/concise/bd366.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_366_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_366_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_366_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_366_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'a', 'Publishers'' compressed title identification (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'b', 'Detailed date of publication (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'c', 'Availability status code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'd', 'Expected next availability date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'e', 'Note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'f', 'Publisher''s discount category (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'g', 'Date made out of print (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'j', 'ISO country code (NR) Code from: ISO 3166-1, Codes for the Representation of Names of Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'k', 'MARC country code (NR) Code for the country in which the information in the field is applicable. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'm', 'Identification of agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', '2', 'Source of availability status code (NR) MARC code that identifies the source of the availability status code recorded in subfield $c. Code from: Availability Status Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 366 file: www.loc.gov/marc/bibliographic/concise/bd366.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_366_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_366_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_366_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_366_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'a', 'Publishers'' compressed title identification (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'b', 'Detailed date of publication (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'c', 'Availability status code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'd', 'Expected next availability date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'e', 'Note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'f', 'Publisher''s discount category (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'g', 'Date made out of print (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'j', 'ISO country code (NR) Code from: ISO 3166-1, Codes for the Representation of Names of Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'k', 'MARC country code (NR) Code for the country in which the information in the field is applicable. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', 'm', 'Identification of agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', '2', 'Source of availability status code (NR) MARC code that identifies the source of the availability status code recorded in subfield $c. Code from: Availability Status Code Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '366', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 504 file: www.loc.gov/marc/bibliographic/concise/bd504.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_504_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_504_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_504_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_504_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', 'a', 'Bibliography, etc. note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', 'b', 'Number of references (NR) Used to indicate the significance of a bibliography.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 504 file: www.loc.gov/marc/bibliographic/concise/bd504.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_504_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_504_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_504_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_504_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', 'a', 'Bibliography, etc. note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', 'b', 'Number of references (NR) Used to indicate the significance of a bibliography.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '504', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 511 file: www.loc.gov/marc/bibliographic/concise/bd511.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_511_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_511_ind_1', '0', 'No display constant generated', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_511_ind_1', '1', 'Cast', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_511_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_511_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '511', 'a', 'Participant or performer note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '511', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '511', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 511 file: www.loc.gov/marc/bibliographic/concise/bd511.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_511_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_511_ind_1', '0', 'No display constant generated', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_511_ind_1', '1', 'Cast', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_511_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_511_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '511', 'a', 'Participant or performer note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '511', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '511', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 513 file: www.loc.gov/marc/bibliographic/concise/bd513.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_513_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_513_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_513_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_513_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', 'a', 'Type of report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', 'b', 'Period covered (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 513 file: www.loc.gov/marc/bibliographic/concise/bd513.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_513_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_513_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_513_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_513_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', 'a', 'Type of report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', 'b', 'Period covered (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '513', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 514 file: www.loc.gov/marc/bibliographic/concise/bd514.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_514_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_514_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_514_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_514_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'a', 'Attribute accuracy report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'b', 'Attribute accuracy value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'c', 'Attribute accuracy explanation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'd', 'Logical consistency report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'e', 'Completeness report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'f', 'Horizontal position accuracy report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'g', 'Horizontal position accuracy value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'h', 'Horizontal position accuracy explanation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'i', 'Vertical positional accuracy report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'j', 'Vertical positional accuracy value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'k', 'Vertical positional accuracy explanation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'm', 'Cloud cover (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'u', 'Uniform Resource Identifier (R) Uniform Resource Identifier (URI), for example a URL or URN, which provides electronic access data in a standard syntax. This data can be used for automated access to an electronic item using one of the Internet protocols.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'z', 'Display note (R) Introduces the data in the field, when needed.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 514 file: www.loc.gov/marc/bibliographic/concise/bd514.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_514_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_514_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_514_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_514_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'a', 'Attribute accuracy report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'b', 'Attribute accuracy value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'c', 'Attribute accuracy explanation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'd', 'Logical consistency report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'e', 'Completeness report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'f', 'Horizontal position accuracy report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'g', 'Horizontal position accuracy value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'h', 'Horizontal position accuracy explanation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'i', 'Vertical positional accuracy report (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'j', 'Vertical positional accuracy value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'k', 'Vertical positional accuracy explanation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'm', 'Cloud cover (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'u', 'Uniform Resource Identifier (R) Uniform Resource Identifier (URI), for example a URL or URN, which provides electronic access data in a standard syntax. This data can be used for automated access to an electronic item using one of the Internet protocols.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', 'z', 'Display note (R) Introduces the data in the field, when needed.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '514', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 516 file: www.loc.gov/marc/bibliographic/concise/bd516.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_516_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_516_ind_1', '#', 'Type of file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_516_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_516_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_516_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '516', 'a', 'Type of computer file or data note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '516', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '516', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 516 file: www.loc.gov/marc/bibliographic/concise/bd516.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_516_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_516_ind_1', '#', 'Type of file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_516_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_516_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_516_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '516', 'a', 'Type of computer file or data note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '516', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '516', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 521 file: www.loc.gov/marc/bibliographic/concise/bd521.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_521_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '#', 'Audience', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '0', 'Reading grade level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '1', 'Interest age level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '2', 'Interest grade level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '3', 'Special audience characteristics', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '4', 'Motivation/interest level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_521_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', 'a', 'Target audience note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', 'b', 'Source (NR) Name or abbreviation of the agency or entity that determined the target audience of the item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 521 file: www.loc.gov/marc/bibliographic/concise/bd521.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_521_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '#', 'Audience', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '0', 'Reading grade level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '1', 'Interest age level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '2', 'Interest grade level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '3', 'Special audience characteristics', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '4', 'Motivation/interest level', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_521_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_521_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', 'a', 'Target audience note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', 'b', 'Source (NR) Name or abbreviation of the agency or entity that determined the target audience of the item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '521', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 522 file: www.loc.gov/marc/bibliographic/concise/bd522.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_522_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_522_ind_1', '#', 'Geographic coverage', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_522_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_522_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_522_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '522', 'a', 'Geographic coverage note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '522', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '522', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 522 file: www.loc.gov/marc/bibliographic/concise/bd522.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_522_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_522_ind_1', '#', 'Geographic coverage', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_522_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_522_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_522_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '522', 'a', 'Geographic coverage note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '522', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '522', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 524 file: www.loc.gov/marc/bibliographic/concise/bd524.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_524_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_524_ind_1', '#', 'Cite as', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_524_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_524_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_524_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', 'a', 'Preferred citation of described materials note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '2', 'Source of schema used (NR) Code from: Citation Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 524 file: www.loc.gov/marc/bibliographic/concise/bd524.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_524_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_524_ind_1', '#', 'Cite as', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_524_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_524_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_524_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', 'a', 'Preferred citation of described materials note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '2', 'Source of schema used (NR) Code from: Citation Scheme Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '524', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 525 file: www.loc.gov/marc/bibliographic/concise/bd525.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_525_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_525_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_525_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_525_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '525', 'a', 'Supplement note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '525', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '525', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 525 file: www.loc.gov/marc/bibliographic/concise/bd525.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_525_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_525_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_525_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_525_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '525', 'a', 'Supplement note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '525', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '525', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 526 file: www.loc.gov/marc/bibliographic/concise/bd526.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_526_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_526_ind_1', '0', 'Reading program', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_526_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_526_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_526_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'a', 'Program name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'b', 'Interest level (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'c', 'Reading level (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'd', 'Title point value (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'i', 'Display text (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'x', 'Nonpublic note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', '8', 'Field link and sequence number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 526 file: www.loc.gov/marc/bibliographic/concise/bd526.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_526_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_526_ind_1', '0', 'Reading program', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_526_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_526_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_526_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'a', 'Program name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'b', 'Interest level (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'c', 'Reading level (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'd', 'Title point value (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'i', 'Display text (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'x', 'Nonpublic note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '526', '8', 'Field link and sequence number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 530 file: www.loc.gov/marc/bibliographic/concise/bd530.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_530_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_530_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_530_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_530_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'a', 'Additional physical form available note (NR) For continuing resources, availability source, availability conditions, and order number information are included in subfield $a.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'b', 'Availability source (NR) Organizational unit or vendor from which the additional physical form may be acquired.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'c', 'Availability conditions (NR) Terms under which the additional physical form of the materials is available (e.g., Photocopies at cost).','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'd', 'Order number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'u', 'Uniform Resource Identifier (R) Uniform Resource Identifier (URI), for example a URL or URN, which provides electronic access data in a standard syntax. This data can be used for automated access to an electronic item using one of the Internet protocols.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 530 file: www.loc.gov/marc/bibliographic/concise/bd530.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_530_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_530_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_530_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_530_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'a', 'Additional physical form available note (NR) For continuing resources, availability source, availability conditions, and order number information are included in subfield $a.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'b', 'Availability source (NR) Organizational unit or vendor from which the additional physical form may be acquired.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'c', 'Availability conditions (NR) Terms under which the additional physical form of the materials is available (e.g., Photocopies at cost).','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'd', 'Order number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', 'u', 'Uniform Resource Identifier (R) Uniform Resource Identifier (URI), for example a URL or URN, which provides electronic access data in a standard syntax. This data can be used for automated access to an electronic item using one of the Internet protocols.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '530', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 535 file: www.loc.gov/marc/bibliographic/concise/bd535.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_535_ind_1$ident$, - BTRIM($label$First - Custodial role - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_535_ind_1', '1', 'Holder of originals', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_535_ind_1', '2', 'Holder of duplicates', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_535_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_535_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'a', 'Custodian (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'b', 'Postal address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'c', 'Country (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'd', 'Telecommunications address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'g', 'Repository location code (NR) Two- or three-character MARC code for the country of the repository holding originals or duplicates of the material. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 535 file: www.loc.gov/marc/bibliographic/concise/bd535.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_535_ind_1$ident$, - BTRIM($label$First - Custodial role - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_535_ind_1', '1', 'Holder of originals', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_535_ind_1', '2', 'Holder of duplicates', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_535_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_535_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'a', 'Custodian (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'b', 'Postal address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'c', 'Country (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'd', 'Telecommunications address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', 'g', 'Repository location code (NR) Two- or three-character MARC code for the country of the repository holding originals or duplicates of the material. Code from: MARC Code List for Countries.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '535', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 536 file: www.loc.gov/marc/bibliographic/concise/bd536.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_536_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_536_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_536_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_536_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'a', 'Text of note (NR) Information concerning the sponsors or funding agencies.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'b', 'Contract number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'c', 'Grant number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'd', 'Undifferentiated number (R) Undifferentiated number associated with the material that identifies a project, task or work unit number.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'e', 'Program element number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'f', 'Project number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'g', 'Task number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'h', 'Work unit number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 536 file: www.loc.gov/marc/bibliographic/concise/bd536.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_536_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_536_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_536_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_536_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'a', 'Text of note (NR) Information concerning the sponsors or funding agencies.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'b', 'Contract number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'c', 'Grant number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'd', 'Undifferentiated number (R) Undifferentiated number associated with the material that identifies a project, task or work unit number.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'e', 'Program element number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'f', 'Project number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'g', 'Task number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', 'h', 'Work unit number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '536', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 538 file: www.loc.gov/marc/bibliographic/concise/bd538.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_538_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_538_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_538_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_538_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', 'a', 'System details note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', 'i', 'Display text (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 538 file: www.loc.gov/marc/bibliographic/concise/bd538.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_538_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_538_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_538_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_538_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', 'a', 'System details note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', 'i', 'Display text (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '5', 'Institution to which field applies (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '538', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 541 file: www.loc.gov/marc/bibliographic/concise/bd541.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_541_ind_1$ident$, - BTRIM($label$First - Privacy - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_541_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'a', 'Source of acquisition (NR) Name of the person(s) or organization that is the source of the material.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'b', 'Address (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'c', 'Method of acquisition (NR) Terms under which a transfer of physical custody occurs, for example, by gift, bequest, loan, purchase, deposit.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'd', 'Date of acquisition (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'e', 'Accession number (NR) Identification code assigned to materials acquired in a single and separate transfer of custody.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'f', 'Owner (NR) Name of the individual or organization with legal custody over the described materials.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'h', 'Purchase price (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'n', 'Extent (R) Number of items acquired.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'o', 'Type of unit (R) Name of the unit of measurement, e.g., cartons.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 541 file: www.loc.gov/marc/bibliographic/concise/bd541.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_541_ind_1$ident$, - BTRIM($label$First - Privacy - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_541_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_541_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'a', 'Source of acquisition (NR) Name of the person(s) or organization that is the source of the material.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'b', 'Address (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'c', 'Method of acquisition (NR) Terms under which a transfer of physical custody occurs, for example, by gift, bequest, loan, purchase, deposit.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'd', 'Date of acquisition (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'e', 'Accession number (NR) Identification code assigned to materials acquired in a single and separate transfer of custody.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'f', 'Owner (NR) Name of the individual or organization with legal custody over the described materials.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'h', 'Purchase price (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'n', 'Extent (R) Number of items acquired.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', 'o', 'Type of unit (R) Name of the unit of measurement, e.g., cartons.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '541', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 544 file: www.loc.gov/marc/bibliographic/concise/bd544.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_544_ind_1$ident$, - BTRIM($label$First - Relationship - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_1', '0', 'Associated materials - Other materials identified in the note have the same provenance but reside in a - different repository.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_1', '1', 'Related materials - Other materials identified in the note share the sphere of activity, reside in - the same repository, but have different provenance.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_544_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'a', 'Custodian (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'b', 'Address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'c', 'Country (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'd', 'Title (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'e', 'Provenance (R) History of custody of the described materials since their creation, including any changes successive custodians made to them.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'n', 'Note (R) Entire text of the note that describes the other materials. Subfield $n may be used instead of the specific subfields for title of materials, custodian, and provenance.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 544 file: www.loc.gov/marc/bibliographic/concise/bd544.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_544_ind_1$ident$, - BTRIM($label$First - Relationship - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_1', '0', 'Associated materials - Other materials identified in the note have the same provenance but reside in a - different repository.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_1', '1', 'Related materials - Other materials identified in the note share the sphere of activity, reside in - the same repository, but have different provenance.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_544_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_544_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'a', 'Custodian (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'b', 'Address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'c', 'Country (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'd', 'Title (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'e', 'Provenance (R) History of custody of the described materials since their creation, including any changes successive custodians made to them.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', 'n', 'Note (R) Entire text of the note that describes the other materials. Subfield $n may be used instead of the specific subfields for title of materials, custodian, and provenance.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '544', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 545 file: www.loc.gov/marc/bibliographic/concise/bd545.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_545_ind_1$ident$, - BTRIM($label$First - Type of data - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_1', '0', 'Biographical sketch', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_1', '1', 'Administrative history', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_545_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', 'a', 'Biographical or historical data (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', 'b', 'Expansion (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 545 file: www.loc.gov/marc/bibliographic/concise/bd545.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_545_ind_1$ident$, - BTRIM($label$First - Type of data - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_1', '0', 'Biographical sketch', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_1', '1', 'Administrative history', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_545_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_545_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', 'a', 'Biographical or historical data (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', 'b', 'Expansion (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '545', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 547 file: www.loc.gov/marc/bibliographic/concise/bd547.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_547_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_547_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_547_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_547_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '547', 'a', 'Former title complexity note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '547', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '547', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 547 file: www.loc.gov/marc/bibliographic/concise/bd547.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_547_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_547_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_547_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_547_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '547', 'a', 'Former title complexity note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '547', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '547', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 552 file: www.loc.gov/marc/bibliographic/concise/bd552.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_552_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_552_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_552_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_552_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'a', 'Entity type label (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'b', 'Entity type definition and source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'c', 'Attribute label (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'd', 'Attribute definition and source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'e', 'Enumerated domain value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'f', 'Enumerated domain value definition and source (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'g', 'Range domain minimum and maximum (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'h', 'Codeset name and source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'i', 'Unrepresentable domain (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'j', 'Attribute units of measurement and resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'k', 'Beginning and ending date of attribute values (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'l', 'Attribute value accuracy (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'm', 'Attribute value accuracy explanation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'n', 'Attribute measurement frequency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'o', 'Entity and attribute overview (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'p', 'Entity and attribute detail citation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'z', 'Display note (R) Note that introduces the data in the field when needed.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 552 file: www.loc.gov/marc/bibliographic/concise/bd552.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_552_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_552_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_552_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_552_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'a', 'Entity type label (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'b', 'Entity type definition and source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'c', 'Attribute label (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'd', 'Attribute definition and source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'e', 'Enumerated domain value (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'f', 'Enumerated domain value definition and source (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'g', 'Range domain minimum and maximum (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'h', 'Codeset name and source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'i', 'Unrepresentable domain (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'j', 'Attribute units of measurement and resolution (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'k', 'Beginning and ending date of attribute values (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'l', 'Attribute value accuracy (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'm', 'Attribute value accuracy explanation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'n', 'Attribute measurement frequency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'o', 'Entity and attribute overview (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'p', 'Entity and attribute detail citation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', 'z', 'Display note (R) Note that introduces the data in the field when needed.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '552', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 556 file: www.loc.gov/marc/bibliographic/concise/bd556.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_556_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_556_ind_1', '#', 'Documentation - Used to generate the display constant Documentation:.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_556_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_556_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_556_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', 'a', 'Information about documentation note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', 'z', 'International Standard Book Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 556 file: www.loc.gov/marc/bibliographic/concise/bd556.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_556_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_556_ind_1', '#', 'Documentation - Used to generate the display constant Documentation:.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_556_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_556_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_556_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', 'a', 'Information about documentation note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', 'z', 'International Standard Book Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '556', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 562 file: www.loc.gov/marc/bibliographic/concise/bd562.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_562_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_562_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_562_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_562_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'a', 'Identifying markings (R) Markings on the support or imbedded in the medium that can be used to identify the copy of the described materials (e.g., watermarks, annotations, or captions).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'b', 'Copy identification (R) Information such as names, codes, numbers, or description used to distinguish one copy of the described materials from other copies.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'c', 'Version identification (R) Information such as names, codes, or descriptions used to identify a version that differs in content but is related across time to another version, such as an edition.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'd', 'Presentation format (R) Presentation format in which the recorded materials, regardless of their current medium, were intended to be used, seen, or heard (e.g., a film made for TV or a text intended for oral proclamation).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'e', 'Number of copies (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 562 file: www.loc.gov/marc/bibliographic/concise/bd562.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_562_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_562_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_562_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_562_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'a', 'Identifying markings (R) Markings on the support or imbedded in the medium that can be used to identify the copy of the described materials (e.g., watermarks, annotations, or captions).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'b', 'Copy identification (R) Information such as names, codes, numbers, or description used to distinguish one copy of the described materials from other copies.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'c', 'Version identification (R) Information such as names, codes, or descriptions used to identify a version that differs in content but is related across time to another version, such as an edition.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'd', 'Presentation format (R) Presentation format in which the recorded materials, regardless of their current medium, were intended to be used, seen, or heard (e.g., a film made for TV or a text intended for oral proclamation).','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', 'e', 'Number of copies (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '562', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 563 file: www.loc.gov/marc/bibliographic/concise/bd563.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_563_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_563_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_563_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_563_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', 'a', 'Binding note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 563 file: www.loc.gov/marc/bibliographic/concise/bd563.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_563_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_563_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_563_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_563_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', 'a', 'Binding note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', 'u', 'Uniform Resource Identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '563', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 565 file: www.loc.gov/marc/bibliographic/concise/bd565.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_565_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_1', '#', 'File size', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_1', '0', 'Case file characteristics', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_565_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'a', 'Number of cases/variables (NR) Number of cases or number of variables in a single case within a repetitive case file series.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'b', 'Name of variable (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'c', 'Unit of analysis (R) Subject to which variables in case files or data bases refer; for example, convicts in correctional files, workers in personnel records, or casualities in emergency room intake files.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'd', 'Universe of data (R) Scope of the data collection effort and the specifications of the sample represented in the described materials.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'e', 'Filing scheme or code (R) Information that places the described materials in the context of a scheme of intellectual arrangement.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 565 file: www.loc.gov/marc/bibliographic/concise/bd565.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_565_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_1', '#', 'File size', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_1', '0', 'Case file characteristics', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_565_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_565_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'a', 'Number of cases/variables (NR) Number of cases or number of variables in a single case within a repetitive case file series.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'b', 'Name of variable (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'c', 'Unit of analysis (R) Subject to which variables in case files or data bases refer; for example, convicts in correctional files, workers in personnel records, or casualities in emergency room intake files.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'd', 'Universe of data (R) Scope of the data collection effort and the specifications of the sample represented in the described materials.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', 'e', 'Filing scheme or code (R) Information that places the described materials in the context of a scheme of intellectual arrangement.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '565', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 580 file: www.loc.gov/marc/bibliographic/concise/bd580.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_580_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_580_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_580_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_580_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '580', 'a', 'Linking entry complexity note (NR) Catalog entry for the related title and a statement describing the relationship.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '580', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '580', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 580 file: www.loc.gov/marc/bibliographic/concise/bd580.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_580_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_580_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_580_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_580_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '580', 'a', 'Linking entry complexity note (NR) Catalog entry for the related title and a statement describing the relationship.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '580', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '580', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 581 file: www.loc.gov/marc/bibliographic/concise/bd581.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_581_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_581_ind_1', '#', 'Publications', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_581_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_581_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_581_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', 'a', 'Publications about described materials note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', 'z', 'International Standard Book Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 581 file: www.loc.gov/marc/bibliographic/concise/bd581.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_581_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_581_ind_1', '#', 'Publications', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_581_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_581_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_581_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', 'a', 'Publications about described materials note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', 'z', 'International Standard Book Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '581', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 584 file: www.loc.gov/marc/bibliographic/concise/bd584.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_584_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_584_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_584_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_584_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', 'a', 'Accumulation (R) Rate at which the described materials are accumulating expressed as a ratio of volume to time period.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', 'b', 'Frequency of use (R) Measure of reference activity, usually expressed as a ratio of number of retrievals to time period, or by general terms such as active or inactive.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 584 file: www.loc.gov/marc/bibliographic/concise/bd584.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_584_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_584_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_584_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_584_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', 'a', 'Accumulation (R) Rate at which the described materials are accumulating expressed as a ratio of volume to time period.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', 'b', 'Frequency of use (R) Measure of reference activity, usually expressed as a ratio of number of retrievals to time period, or by general terms such as active or inactive.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '584', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 585 file: www.loc.gov/marc/bibliographic/concise/bd585.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_585_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_585_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_585_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_585_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', 'a', 'Exhibitions note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 585 file: www.loc.gov/marc/bibliographic/concise/bd585.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_585_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_585_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_585_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_585_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', 'a', 'Exhibitions note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '585', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 586 file: www.loc.gov/marc/bibliographic/concise/bd586.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_586_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_586_ind_1', '#', 'Awards', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_586_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_586_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_586_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', 'a', 'Awards note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', '8', 'Field link and sequence number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 586 file: www.loc.gov/marc/bibliographic/concise/bd586.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_586_ind_1$ident$, - BTRIM($label$First - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_586_ind_1', '#', 'Awards', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_586_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_586_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_586_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', 'a', 'Awards note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '586', '8', 'Field link and sequence number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 59x file: www.loc.gov/marc/bibliographic/concise/bd59x.html --- category: biblio tag: 69x file: www.loc.gov/marc/bibliographic/concise/bd69x.html --- category: biblio tag: 740 file: www.loc.gov/marc/bibliographic/concise/bd740.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_740_ind_1$ident$, - BTRIM($label$First - Nonfiling characters - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_740_ind_2$ident$, - BTRIM($label$Second - Type of added entry - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_2', '2', 'Analytical entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'a', 'Uncontrolled related/analytical title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'h', 'Medium (NR) Media qualifier.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'n', 'Number of part/section of a work (R) Number designation for a part/section of a work used in a title.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'p', 'Name of part/section of a work (R) Name designation of a part/section of work in a title.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 740 file: www.loc.gov/marc/bibliographic/concise/bd740.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_740_ind_1$ident$, - BTRIM($label$First - Nonfiling characters - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_1', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_740_ind_2$ident$, - BTRIM($label$Second - Type of added entry - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_740_ind_2', '2', 'Analytical entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'a', 'Uncontrolled related/analytical title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'h', 'Medium (NR) Media qualifier.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'n', 'Number of part/section of a work (R) Number designation for a part/section of a work used in a title.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', 'p', 'Name of part/section of a work (R) Name designation of a part/section of work in a title.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', '5', 'Institution to which field applies (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '740', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 850 file: www.loc.gov/marc/bibliographic/concise/bd850.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_850_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_850_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_850_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_850_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '850', 'a', 'Holding institution (R) MARC code or the name of the institution holding the item. See Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '850', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 850 file: www.loc.gov/marc/bibliographic/concise/bd850.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_850_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_850_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_850_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_850_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '850', 'a', 'Holding institution (R) MARC code or the name of the institution holding the item. See Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '850', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 880 file: www.loc.gov/marc/bibliographic/concise/bd880.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_880_ind_1$ident$, - BTRIM($label$First - Appropriate indicator as available in associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_880_ind_2$ident$, - BTRIM($label$Second - Appropriate indicator as available in associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'a', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'b', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'c', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'd', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'e', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'f', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'g', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'h', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'i', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'j', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'k', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'l', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'm', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'n', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'o', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'p', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'q', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'r', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 's', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 't', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'u', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'v', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'w', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'x', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'y', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'z', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '0', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '1', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '2', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '3', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '4', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '5', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '7', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '8', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '9', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 880 file: www.loc.gov/marc/bibliographic/concise/bd880.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_880_ind_1$ident$, - BTRIM($label$First - Appropriate indicator as available in associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_880_ind_2$ident$, - BTRIM($label$Second - Appropriate indicator as available in associated field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'a', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'b', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'c', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'd', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'e', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'f', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'g', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'h', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'i', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'j', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'k', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'l', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'm', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'n', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'o', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'p', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'q', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'r', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 's', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 't', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'u', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'v', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'w', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'x', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'y', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', 'z', '$a-z - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '0', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '1', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '2', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '3', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '4', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '5', '$0-5 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '7', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '8', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '880', '9', '$7-9 - Same as associated field','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 882 file: www.loc.gov/marc/bibliographic/concise/bd882.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_882_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_882_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_882_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_882_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', 'a', 'Replacement title (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', 'i', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', 'w', 'Replacement bibliographic record control number (R) System control number of the replacement bibliographic record preceded by the MARC code, enclosed in parentheses, for the agency to which the control number applies. See Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 882 file: www.loc.gov/marc/bibliographic/concise/bd882.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_882_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_882_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_882_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_882_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', 'a', 'Replacement title (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', 'i', 'Explanatory text (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', 'w', 'Replacement bibliographic record control number (R) System control number of the replacement bibliographic record preceded by the MARC code, enclosed in parentheses, for the agency to which the control number applies. See Organization Code Sources for a listing of sources used in MARC 21 records.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '882', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 886 file: www.loc.gov/marc/bibliographic/concise/bd886.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_886_ind_1$ident$, - BTRIM($label$First - Type of field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_1', '0', 'Leader', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_1', '1', 'Variable control fields (002-009)', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_1', '2', 'Variable data fields (010-999)', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_886_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'a', 'Tag of the foreign MARC field (NR) Not present when the first indicator value is 0 (Leader). When it is present, subfield $a is the second subfield in the field, immediately before subfield $b.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'b', 'Content of the foreign MARC field (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '2', 'Source of data (NR) MARC code for the foreign MARC format from which the record is converted. Must be first subfield in the field. Code from: Format Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'a', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'b', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'c', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'd', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'e', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'f', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'g', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'h', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'i', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'j', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'k', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'l', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'm', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'n', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'o', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'p', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'q', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'r', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 's', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 't', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'u', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'v', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'w', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'x', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'y', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'z', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '0', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '1', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '2', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '3', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '4', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '5', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '6', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '7', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '8', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '9', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 886 file: www.loc.gov/marc/bibliographic/concise/bd886.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_886_ind_1$ident$, - BTRIM($label$First - Type of field - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_1', '0', 'Leader', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_1', '1', 'Variable control fields (002-009)', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_1', '2', 'Variable data fields (010-999)', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_886_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_886_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'a', 'Tag of the foreign MARC field (NR) Not present when the first indicator value is 0 (Leader). When it is present, subfield $a is the second subfield in the field, immediately before subfield $b.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'b', 'Content of the foreign MARC field (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '2', 'Source of data (NR) MARC code for the foreign MARC format from which the record is converted. Must be first subfield in the field. Code from: Format Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'a', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'b', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'c', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'd', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'e', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'f', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'g', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'h', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'i', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'j', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'k', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'l', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'm', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'n', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'o', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'p', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'q', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'r', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 's', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 't', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'u', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'v', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'w', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'x', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'y', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', 'z', '$a-z - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '0', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '1', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '2', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '3', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '4', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '5', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '6', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '7', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '8', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '886', '9', '$0-9 - Foreign MARC subfield (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 887 file: www.loc.gov/marc/bibliographic/concise/bd887.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_887_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_887_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_887_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_887_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '887', 'a', 'Content of non-MARC field (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '887', '2', 'Source of data (NR) Source of the data, either a schema or DTD reference. Code from: Format Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 887 file: www.loc.gov/marc/bibliographic/concise/bd887.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_887_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_887_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_887_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_887_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '887', 'a', 'Content of non-MARC field (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '887', '2', 'Source of data (NR) Source of the data, either a schema or DTD reference. Code from: Format Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: int file: www.loc.gov/marc/bibliographic/concise/bdintro.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007v.html --- category: biblio tag: 017 file: www.loc.gov/marc/bibliographic/concise/bd017.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_017_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_017_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_017_ind_2$ident$, - BTRIM($label$Second - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_017_ind_2', '#', 'Copyright or legal deposit number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_017_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'a', 'Copyright or legal deposit number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'b', 'Assigning agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'd', 'Date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'i', 'Display text (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'z', 'Canceled/invalid copyright or legal deposit number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', '2', 'Source (NR) Code from: Copyright and Legal Deposit Number Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 017 file: www.loc.gov/marc/bibliographic/concise/bd017.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_017_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_017_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_017_ind_2$ident$, - BTRIM($label$Second - Display constant controller - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_017_ind_2', '#', 'Copyright or legal deposit number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_017_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'a', 'Copyright or legal deposit number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'b', 'Assigning agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'd', 'Date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'i', 'Display text (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', 'z', 'Canceled/invalid copyright or legal deposit number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', '2', 'Source (NR) Code from: Copyright and Legal Deposit Number Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '017', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 363 file: www.loc.gov/marc/bibliographic/concise/bd363.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_363_ind_1$ident$, - BTRIM($label$First - Start/End designator - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_1', '0', 'Starting information', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_1', '1', 'Ending information', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_363_ind_2$ident$, - BTRIM($label$Second - State of issuance - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_2', '#', 'Not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_2', '0', 'Closed - The sequence of the publication has terminated and is no longer being - issued.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_2', '1', 'Open - The sequence of the publication continues to be issued.', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'a', 'First level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'b', 'Second level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'c', 'Third level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'd', 'Fourth level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'e', 'Fifth level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'f', 'Sixth level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'g', 'Alternative numbering scheme, first level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'h', 'Alternative numbering scheme, second level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'i', 'First level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'j', 'Second level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'k', 'Third level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'l', 'Fourth level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'm', 'Alternative numbering scheme, chronology (NR) Highest level of an alternative chronology scheme.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'u', 'First level textual designation (NR) Textual information associated with enumeration and chronology.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'v', 'First level of chronology, issuance (NR) For items that use coverage in subfield $i (First level of chronology) when the issuing date is different.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'x', 'Nonpublic note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', '8', 'Field link and sequence number (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 363 file: www.loc.gov/marc/bibliographic/concise/bd363.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_363_ind_1$ident$, - BTRIM($label$First - Start/End designator - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_1', '0', 'Starting information', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_1', '1', 'Ending information', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_363_ind_2$ident$, - BTRIM($label$Second - State of issuance - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_2', '#', 'Not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_2', '0', 'Closed - The sequence of the publication has terminated and is no longer being - issued.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_363_ind_2', '1', 'Open - The sequence of the publication continues to be issued.', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'a', 'First level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'b', 'Second level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'c', 'Third level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'd', 'Fourth level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'e', 'Fifth level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'f', 'Sixth level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'g', 'Alternative numbering scheme, first level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'h', 'Alternative numbering scheme, second level of enumeration (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'i', 'First level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'j', 'Second level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'k', 'Third level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'l', 'Fourth level of chronology (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'm', 'Alternative numbering scheme, chronology (NR) Highest level of an alternative chronology scheme.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'u', 'First level textual designation (NR) Textual information associated with enumeration and chronology.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'v', 'First level of chronology, issuance (NR) For items that use coverage in subfield $i (First level of chronology) when the issuing date is different.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'x', 'Nonpublic note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', 'z', 'Public note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '363', '8', 'Field link and sequence number (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 542 file: www.loc.gov/marc/bibliographic/concise/bd542.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_542_ind_1$ident$, - BTRIM($label$First - Privacy - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_542_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'a', 'Personal creator (NR) "Undetermined" may be used if research was done but no personal creator was found.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'b', 'Personal creator death date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'c', 'Corporate creator (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'd', 'Copyright holder (R) "Undetermined" may be used if research was done but no copyright holder was found.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'e', 'Copyright holder contact information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'f', 'Copyright statement (R) Copyright statement as it is presented on the resource.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'g', 'Copyright date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'h', 'Copyright renewal date (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'i', 'Publication date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'j', 'Creation date (NR) Year of creation for an unpublished resource.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'k', 'Publisher (R) "Undetermined" may be used if research was done but no publisher is found.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'l', 'Copyright status (NR) Determined status of the item. This is only recorded if it is known with certainty. "Undetermined" may be used if research was done but no status is found.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'm', 'Publication status (NR) Whether the item is published or unpublished, using the definition of published in copyright law of the jurisdiction, or that expressed in the Berne Convention''s specifications if other definitions are not available. "Undetermined" may be used if research was done but no status is found.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'n', 'Note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'o', 'Research date (NR) Date that the copyright data was determined based on research.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'p', 'Country of publication or creation (R) Country in which the resource was published or, in the case of unpublished materials, the country in which the resource was created.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'q', 'Supplying agency (NR) Code or name of agency supplying the information.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'r', 'Jurisdiction of copyright assessment (NR) Jurisdiction within which the copyright status assessment is being made.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 's', 'Source of information (NR) Source of the copyright information, whether from the piece or from other sources.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'u', 'Uniform Resource Identifier (R) Uniform Resource Identifier (URI), for example a URL or URN, which provides electronic access data in a standard syntax. The data may be a more detailed statement about information relating to copyright status.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 542 file: www.loc.gov/marc/bibliographic/concise/bd542.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_542_ind_1$ident$, - BTRIM($label$First - Privacy - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_542_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_542_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'a', 'Personal creator (NR) "Undetermined" may be used if research was done but no personal creator was found.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'b', 'Personal creator death date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'c', 'Corporate creator (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'd', 'Copyright holder (R) "Undetermined" may be used if research was done but no copyright holder was found.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'e', 'Copyright holder contact information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'f', 'Copyright statement (R) Copyright statement as it is presented on the resource.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'g', 'Copyright date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'h', 'Copyright renewal date (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'i', 'Publication date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'j', 'Creation date (NR) Year of creation for an unpublished resource.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'k', 'Publisher (R) "Undetermined" may be used if research was done but no publisher is found.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'l', 'Copyright status (NR) Determined status of the item. This is only recorded if it is known with certainty. "Undetermined" may be used if research was done but no status is found.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'm', 'Publication status (NR) Whether the item is published or unpublished, using the definition of published in copyright law of the jurisdiction, or that expressed in the Berne Convention''s specifications if other definitions are not available. "Undetermined" may be used if research was done but no status is found.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'n', 'Note (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'o', 'Research date (NR) Date that the copyright data was determined based on research.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'p', 'Country of publication or creation (R) Country in which the resource was published or, in the case of unpublished materials, the country in which the resource was created.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'q', 'Supplying agency (NR) Code or name of agency supplying the information.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'r', 'Jurisdiction of copyright assessment (NR) Jurisdiction within which the copyright status assessment is being made.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 's', 'Source of information (NR) Source of the copyright information, whether from the piece or from other sources.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', 'u', 'Uniform Resource Identifier (R) Uniform Resource Identifier (URI), for example a URL or URN, which provides electronic access data in a standard syntax. The data may be a more detailed statement about information relating to copyright status.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '542', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007d.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007g.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007h.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007k.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007m.html --- category: biblio tag: 534 file: www.loc.gov/marc/bibliographic/concise/bd534.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_534_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_534_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_534_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_534_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'a', 'Main entry of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'b', 'Edition statement of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'c', 'Publication, distribution, etc. of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'e', 'Physical description, etc. of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'f', 'Series statement of original (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'k', 'Key title of original (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'l', 'Location of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'm', 'Material specific details (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'n', 'Note about original (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'o', 'Other resource identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'p', 'Introductory phrase (NR) Introductory phrase that introduces the citation of the original version.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 't', 'Title statement of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'x', 'International Standard Serial Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'z', 'International Standard Book Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 534 file: www.loc.gov/marc/bibliographic/concise/bd534.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_534_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_534_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_534_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_534_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'a', 'Main entry of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'b', 'Edition statement of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'c', 'Publication, distribution, etc. of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'e', 'Physical description, etc. of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'f', 'Series statement of original (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'k', 'Key title of original (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'l', 'Location of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'm', 'Material specific details (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'n', 'Note about original (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'o', 'Other resource identifier (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'p', 'Introductory phrase (NR) Introductory phrase that introduces the citation of the original version.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 't', 'Title statement of original (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'x', 'International Standard Serial Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', 'z', 'International Standard Book Number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', '3', 'Materials specified (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '534', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 040 file: www.loc.gov/marc/authority/concise/ad040.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_040_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_040_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_040_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_040_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'a', 'Original cataloging agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'b', 'Language of cataloging (NR) MARC code for the language of the catalog for which the record is intended. Code from: MARC Code List for Languages.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'c', 'Transcribing agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'd', 'Modifying agency (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'e', 'Description conventions (R) Information specifying the description rules used in formulating the heading and reference structure when field 008/10 (Descriptive cataloging rules) contains code z (Other). Code from: Description Convention Source Codes.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'f', 'Subject heading/thesaurus conventions (NR) MARC code for the subject heading/thesaurus conventions used when field 008/11 (Subject heading system/thesaurus) contains code z (Other). Code from: Subject Heading and Term Source Codes, or from specialized subject term lists indicated in the introduction to Subject Heading and Term Source Codes, such as the Genre/Form Code and Term Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 040 file: www.loc.gov/marc/authority/concise/ad040.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_040_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_040_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_authority_040_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_040_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'a', 'Original cataloging agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'b', 'Language of cataloging (NR) MARC code for the language of the catalog for which the record is intended. Code from: MARC Code List for Languages.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'c', 'Transcribing agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'd', 'Modifying agency (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'e', 'Description conventions (R) Information specifying the description rules used in formulating the heading and reference structure when field 008/10 (Descriptive cataloging rules) contains code z (Other). Code from: Description Convention Source Codes.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', 'f', 'Subject heading/thesaurus conventions (NR) MARC code for the subject heading/thesaurus conventions used when field 008/11 (Subject heading system/thesaurus) contains code z (Other). Code from: Subject Heading and Term Source Codes, or from specialized subject term lists indicated in the introduction to Subject Heading and Term Source Codes, such as the Genre/Form Code and Term Source Codes.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '040', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 006 file: www.loc.gov/marc/bibliographic/concise/bd006.html --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008x.html --- category: biblio tag: 040 file: www.loc.gov/marc/bibliographic/concise/bd040.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_040_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_040_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_040_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_040_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'a', 'Original cataloging agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'b', 'Language of cataloging (NR) MARC code for the language of cataloging in the record. Code from: MARC Code List for Languages.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'c', 'Transcribing agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'd', 'Modifying agency (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'e', 'Description conventions (R) Code from: Description Convention Source Codes.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 040 file: www.loc.gov/marc/bibliographic/concise/bd040.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_040_ind_1$ident$, - BTRIM($label$First - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_040_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ( - $ident$marc21_biblio_040_ind_2$ident$, - BTRIM($label$Second - Undefined - -$label$), - NULL - ) ON CONFLICT (name) DO UPDATE SET - label = EXCLUDED.label, - description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_040_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'a', 'Original cataloging agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'b', 'Language of cataloging (NR) MARC code for the language of cataloging in the record. Code from: MARC Code List for Languages.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'c', 'Transcribing agency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'd', 'Modifying agency (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', 'e', 'Description conventions (R) Code from: Description Convention Source Codes.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', '6', 'Linkage (NR) See description of this subfield in Appendix A: Control Subfields.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '040', '8', 'Field link and sequence number (R) See description of this subfield in Appendix A: Control Subfields.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 588 file: www.loc.gov/marc/bibliographic/concise/bd588.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_588_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_588_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_588_ind_1', '0', 'Source of description', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_588_ind_1', '1', 'Latest issue consulted', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_588_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_588_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '588', 'a', 'Source of description note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 884 file: www.loc.gov/marc/authority/concise/ad884.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_884_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_884_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_884_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_884_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '884', 'a', 'Conversion process (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008b.html - - UPDATE config.record_attr_definition - SET description = 'Illustrations' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Target audience' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 22 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 23 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Nature of contents' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 24 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Government publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 28 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Conference publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 29 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Festschrift' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 30 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Index' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 31 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 32 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Literary form' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 33 AND rec_type IN ('BKS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Biography' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 34 AND rec_type IN ('BKS') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 18, '#', 'No illustrations', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'a', 'Illustrations', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'b', 'Maps', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'c', 'Portraits', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'd', 'Charts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'e', 'Plans', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'f', 'Plates', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'g', 'Music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'h', 'Facsimiles', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'i', 'Coats of arms', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'j', 'Genealogical tables', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'k', 'Forms', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'l', 'Samples', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'm', 'Phonodisc, phonowire, etc.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'o', 'Photographs', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'p', 'Illuminations', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '#', 'Unknown or not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'a', 'Preschool', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'b', 'Primary', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'c', 'Pre-adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'd', 'Adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'e', 'Adult', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'f', 'Specialized', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'g', 'General', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'j', 'Juvenile', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '#', 'None of the following', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'a', 'Microfilm', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'b', 'Microfiche', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'c', 'Microopaque', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'd', 'Large print', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'f', 'Braille', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'r', 'Regular print reproduction', 'Eye-readable print, such as a photocopy.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 's', 'Electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '#', 'No specified nature of contents', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'a', 'Abstracts/summaries', 'Abstracts or summaries of other publications. - Not used when a publication includes an - abstract or summary of its own content. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'b', 'Bibliographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'c', 'Catalogs', 'Also includes lists of collectible objects, - such as stamps and coins, or trade catalogs, - etc. For catalogs of books, sound recordings, - or motion pictures, code b (Bibliographies), - code k (Discographies), or code q - (Filmographies), are given with code c. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'd', 'Dictionaries', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'e', 'Encyclopedias', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'f', 'Handbooks', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'g', 'Legal articles', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'i', 'Indexes', 'Index to bibliographical material - other than itself. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'j', 'Patent document', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'k', 'Discographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'l', 'Legislation', 'Full or partial texts of enactments of - legislative bodies, published either in - statute or in code form, or texts of rules and - regulations issued by executive or - administrative agencies. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'm', 'Theses', 'Thesis, dissertation, or work identified as - having been created to satisfy the - requirements for an academic certification or - degree. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'n', 'Surveys of literature in a subject area', 'Composed entirely of authored surveys that - summarize what has been published about a - subject. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'o', 'Reviews', 'Devoted entirely to critical reviews of - published or performed works (e.g., books, - films, sound recordings, theater). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'p', 'Programmed texts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'q', 'Filmographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'r', 'Directories', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 's', 'Statistics', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 't', 'Technical reports', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'u', 'Standards/specifications', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'v', 'Legal cases and case notes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'w', 'Law reports and digests', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'y', 'Yearbooks', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'z', 'Treaties', 'Treaty or accord negotiated between two or - more parties to settle a disagreement, - establish a relationship, grant rights, - etc. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '2', 'Offprints', 'Publication that originally was published as - an article in a monograph or a serial and that - is also issued separately and independently. - Includes preprints and postprints. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '5', 'Calendars', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '6', 'Comics/graphic novels', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '#', 'Not a government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'a', 'Autonomous or semi-autonomous component', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'c', 'Multilocal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'f', 'Federal/national', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'i', 'International intergovernmental', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'l', 'Local', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'm', 'Multistate', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'o', 'Government publication-level undetermined', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 's', 'State, provincial, territorial, dependent, - etc.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'u', 'Unknown if item is government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '0', 'Not a conference publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '1', 'Conference publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, '0', 'Not a festschrift', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, '1', 'Festschrift', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '0', 'No index', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '1', 'Index present', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '0', 'Not fiction (not further specified)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '1', 'Fiction (not further specified)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'd', 'Dramas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'e', 'Essays', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'f', 'Novels', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'h', 'Humor, satires, etc.', 'Humorous work, satire, or of similar literary - form. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'i', 'Letters', 'Single letter or collection of - correspondence. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'j', 'Short stories', 'Short story or collection of short - stories. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'm', 'Mixed forms', 'Represents a variety of literary forms (e.g., - poetry and short stories). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'p', 'Poetry', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 's', 'Speeches', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '#', 'No biographical material', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'a', 'Autobiography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'b', 'Individual biography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'c', 'Collective biography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'd', 'Contains biographical information', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008c.html - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Target audience' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 22 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 23 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 24 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of computer file' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 26 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 27 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Government publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 28 AND rec_type IN ('COM') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 29 AND rec_type IN ('COM') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 22, '#', 'Unknown or not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'a', 'Preschool', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'b', 'Primary', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'c', 'Pre-adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'd', 'Adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'e', 'Adult', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'f', 'Specialized', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'g', 'General', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'j', 'Juvenile', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '#', 'Unknown or not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'a', 'Numeric data', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'b', 'Computer program', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'c', 'Representational', 'Pictorial or graphic information that can be manipulated in conjunction with - other types of files to produce graphic patterns that can be used to interpret - and give meaning to the information. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'd', 'Document', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'e', 'Bibliographic data', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'f', 'Font', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'g', 'Game', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'h', 'Sound', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'i', 'Interactive multimedia', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'j', 'Online system or service', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'm', 'Combination', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 26, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '#', 'Not a government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'a', 'Autonomous or semi-autonomous component', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'c', 'Multilocal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'f', 'Federal/national', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'i', 'International intergovernmental', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'l', 'Local', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'm', 'Multistate', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'o', 'Government publication-level undetermined', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 's', 'State, provincial, territorial, dependent, etc.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'u', 'Unknown if item is government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008p.html - - UPDATE config.record_attr_definition - SET description = 'Relief' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Projection' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 22 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 24 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of cartographic material' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 25 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 26 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Government publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 28 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 29 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 30 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Index' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 31 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 32 AND rec_type IN ('MAP') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Special format characteristics' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 33 AND rec_type IN ('MAP') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 18, '#', 'No relief shown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'a', 'Contours', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'b', 'Shading', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'c', 'Gradient and bathymetric tints', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'd', 'Hachures', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'e', 'Bathymetry/soundings', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'f', 'Form lines', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'g', 'Spot heights', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'i', 'Pictorially', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'j', 'Land forms', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'k', 'Bathymetry/isolines', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'm', 'Rock drawings', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '||||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '##', 'Projection not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'aa', 'Aitoff', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ab', 'Gnomic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ac', 'Lambert''s azimuthal equal area', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ad', 'Orthographic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ae', 'Azimuthal equidistant', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'af', 'Stereographic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ag', 'General vertical near-sided', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'am', 'Modified stereographic for Alaska', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'an', 'Chamberlin trimetric', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ap', 'Polar stereographic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'au', 'Azimuthal, specific type unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'az', 'Azimuthal, other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ba', 'Gall', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bb', 'Goode''s homolographic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bc', 'Lambert''s cylindrical equal area', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bd', 'Mercator', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'be', 'Miller', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bf', 'Mollweide', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bg', 'Sinusoidal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bh', 'Transverse Mercator', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bi', 'Gauss-Kruger', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bj', 'Equirectangular', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bk', 'Krovak', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bl', 'Cassini-Soldner', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bo', 'Oblique Mercator', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'br', 'Robinson', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bs', 'Space oblique Mercator', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bu', 'Cylindrical, specific type unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'bz', 'Cylindrical, other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ca', 'Albers equal area', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'cb', 'Bonne', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'cc', 'Lambert''s conformal conic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'ce', 'Equidistant conic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'cp', 'Polyconic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'cu', 'Conic, specific type unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'cz', 'Conic, other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'da', 'Armadillo', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'db', 'Butterfly', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'dc', 'Eckert', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'dd', 'Goode''s homolosine', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'de', 'Miller''s bipolar oblique conformal conic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'df', 'Van Der Grinten', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'dg', 'Dimaxion', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'dh', 'Cordiform', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'dl', 'Lambert conformal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'zz', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'a', 'Single map', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'b', 'Map series', 'Number of related but physically separate and bibliographically distinct cartographic - units intended by the producer(s) or issuing body(s) to form a single group. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'c', 'Map serial', 'Issued in successive parts bearing numerical or chronological designations and - intended to be continued indefinitely. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'd', 'Globe', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'e', 'Atlas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'f', 'Separate supplement to another work', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'g', 'Bound as part of another work', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '#', 'Not a government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'a', 'Autonomous or semi-autonomous component', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'c', 'Multilocal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'f', 'Federal/national', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'i', 'International intergovernmental', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'l', 'Local', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'm', 'Multistate', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'o', 'Government publication-level undetermined', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 's', 'State, provincial, territorial, dependent, etc.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'u', 'Unknown if item is government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '#', 'None of the following', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'a', 'Microfilm', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'b', 'Microfiche', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'c', 'Microopaque', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'd', 'Large print', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'f', 'Braille', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'r', 'Regular print reproduction', 'Eye-readable print, such as a photocopy.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 's', 'Electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '0', 'No index', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '1', 'Index present', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 31, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '#', 'No specified special format characteristics', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'e', 'Manuscript', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'j', 'Picture card, post card', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'k', 'Calendar', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'l', 'Puzzle', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'n', 'Game', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'o', 'Wall map', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'p', 'Playing cards', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'r', 'Loose-leaf', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '||', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008v.html - - UPDATE config.record_attr_definition - SET description = 'Running time for motion pictures and videorecordings' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 21 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Target audience' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 22 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 23 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Government publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 28 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 29 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 30 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of visual material' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 33 AND rec_type IN ('VIS') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Technique' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 34 AND rec_type IN ('VIS') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 18, '000', 'Running time exceeds three characters', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '001-999', 'Running time', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'nnn', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '---', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '|||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '#', 'Unknown or not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'a', 'Preschool', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'b', 'Primary', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'c', 'Pre-adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'd', 'Adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'e', 'Adult', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'f', 'Specialized', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'g', 'General', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'j', 'Juvenile', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '#', 'Not a government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'a', 'Autonomous or semi-autonomous component', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'c', 'Multilocal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'f', 'Federal/national', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'i', 'International intergovernmental', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'l', 'Local', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'm', 'Multistate', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'o', 'Government publication-level undetermined', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 's', 'State, provincial, territorial, dependent, etc.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'u', 'Unknown if item is government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '#', 'None of the following', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'a', 'Microfilm', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'b', 'Microfiche', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'c', 'Microopaque', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'd', 'Large print', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'f', 'Braille', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 'r', 'Regular print reproduction', 'Eye-readable print, such as a photocopy.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, 's', 'Electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'a', 'Art original', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'b', 'Kit', 'Mixture of components from two or more categories, that is, sound recording, - maps, filmstrips, etc., no one of which is the predominant constituent of the - item. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'c', 'Art reproduction', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'd', 'Diorama', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'f', 'Filmstrip', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'g', 'Game', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'i', 'Picture', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'k', 'Graphic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'l', 'Technical drawing', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'm', 'Motion picture', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'n', 'Chart', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'o', 'Flash card', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'p', 'Microscope slide', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'q', 'Model', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'r', 'Realia', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 's', 'Slide', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 't', 'Transparency', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'v', 'Videorecording', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'w', 'Toy', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'a', 'Animation', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'c', 'Animation and live action', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'l', 'Live action', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'n', 'Not applicable', 'Item is not a motion picture or a videorecording.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 088 file: www.loc.gov/marc/bibliographic/concise/bd088.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_088_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_088_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_088_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_088_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '088', 'a', 'Report number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 884 file: www.loc.gov/marc/bibliographic/concise/bd884.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_884_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_884_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_884_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_884_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '884', 'a', 'Conversion process (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007c.html - - UPDATE config.record_attr_definition - SET description = 'Category of material' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 0 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Specific material designation' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 1 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 2 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Color' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 3 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Dimensions' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 4 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Sound' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 5 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Image bit depth' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 6 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'File formats' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 9 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Quality assurance target(s)' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 10 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Antecedent/Source' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 11 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Level of compression' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 12 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Reformatting Quality' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 13 AND rec_type NOT IN ('AUT') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('007', 0, 'c', 'Electronic resource', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'a', 'Tape cartridge', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'b', 'Chip cartridge', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'c', 'Computer optical disc cartridge', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'd', 'Computer disc, type unspecified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'e', 'Computer disc cartridge, type unspecified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'f', 'Tape cassette', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'h', 'Tape reel', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'j', 'Magnetic disk', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'k', 'Computer card', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'm', 'Magneto-optical disc', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'o', 'Optical disc', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'r', 'Remote', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 's', 'Standalone device', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'u', 'Unspecified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'a', 'One color', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'b', 'Black-and-white', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'c', 'Multicolored', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'g', 'Gray scale', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'm', 'Mixed', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'a', '3 1/2 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'e', '12 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'g', '4 3/4 in. or 12 cm.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'i', '1 1/8 x 2 3/8 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'j', '3 7/8 x 2 1/2 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'o', '5 1/4 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'v', '8 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, '#', 'No sound (silent)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'a', 'Sound', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, '001-999', 'Exact bit depth', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'mmm', 'Multiple', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'nnn', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, '---', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, '|||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'a', 'One file format', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'm', 'Multiple file formats', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'a', 'Absent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'p', 'Present', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'a', 'File reproduced from original', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'b', 'File reproduced from microform', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'c', 'File reproduced from an electronic resource', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'd', 'File reproduced from an intermediate (not microform)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'm', 'Mixed', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'a', 'Uncompressed', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'b', 'Lossless', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'd', 'Lossy', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'm', 'Mixed', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'a', 'Access', 'Electronic resource is of a quality that will support current, electronic access to - the original item (reference use), but is not sufficient to serve as a preservation - copy. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'p', 'Preservation', 'Electronic resource was created via reformatting to help preserve the original - item. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'r', 'Replacement', 'Electronic resource is of very high quality and, when printed out, viewed on screen - or played via a listening device could serve as a replacement should the original - be - lost, damaged, or destroyed. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007a.html - - UPDATE config.record_attr_definition - SET description = 'Category of material' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 0 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Specific material designation' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 1 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 2 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Color' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 3 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Physical medium' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 4 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of reproduction' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 5 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Production/reproduction details' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 6 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Positive/negative aspect' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 7 AND rec_type NOT IN ('AUT') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('007', 0, 'a', 'Map', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'd', 'Atlas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'g', 'Diagram', 'Map characterized by simplified, or schematic, representation.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'j', 'Map', 'Two-dimensional map.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'k', 'Profile', 'Scale representation of the intersection of a vertical surface (which may or may not - be a plane) with the surface of the ground or with that of a conceptual - three-dimensional model of phenomena having continuous distribution (e.g., - rainfall). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'q', 'Model', 'Three-dimensional representation of a real object.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'r', 'Remote-sensing image', 'Image produced by a recording device that is not in physical or intimate contact with - the object under study. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 's', 'Section', 'Scaled representation of a vertical surface (commonly a plane) displaying both the - the intersection profile or some conceptual model, and the underlying structures, - e.g., geological section. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'u', 'Unspecified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'y', 'View', 'Perspective representation of the landscape shown as if it were projected onto an - oblique plane. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'a', 'One color', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'c', 'Multicolored', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'a', 'Paper', 'Any kind of cellulose-based paper.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'b', 'Wood', 'Material which is based on wood particles or fibers may or may not be considered - wood. Consider particle board wood.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'c', 'Stone', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'd', 'Metal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'e', 'Synthetic', 'Man-made substances other than textiles, plastic, and vinyl.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'f', 'Skin', 'Excludes leather, parchment, and vellum.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'g', 'Textiles', 'Used for all fabrics, whether made from natural or synthetic fibers.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'i', 'Plastic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'j', 'Glass', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'l', 'Vinyl', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'n', 'Vellum', 'Fine-grained unsplit lambskin, kidskin, or calfskin prepared especially for writing - or drawing on. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'p', 'Plaster', 'Includes mixtures of ground solids and plaster.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'q', 'Flexible base photographic, positive', 'Material is a flexible base photographic medium designed to render a positive - image. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'r', 'Flexible base photographic, negative', 'Material is a flexible base photographic medium designed to render a negative - image. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 's', 'Non-flexible base photographic, positive', 'Material is a non-flexible base photographic medium designed to render a positive - image. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 't', 'Non-flexible base photographic, negative', 'Material is a non-flexible base photographic medium designed to render a negative - image. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'v', 'Leather', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'w', 'Parchment', 'Skin of a sheep or goat prepared for writing on.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'x', 'Not applicable', 'Physical medium is not applicable to remote digital - cartographic resources because it pertains to characteristics - specific to physical aspects of carriers. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'y', 'Other photographic medium', 'Photographic medium other than those covered by one of the more specific codes q, - r, - s, and t. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'f', 'Facsimile', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'a', 'Photocopy, blueline print', 'Has a blueline image on a white background and is reproduced by the whiteprint - process. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'b', 'Photocopy', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'c', 'Photographic pre-production', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'd', 'Film', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'a', 'Positive', 'Polarity is positive, i.e., lines and characters are dark on light background.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'b', 'Negative', 'Polarity is negative, i.e., lines and characters are light on dark background.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'm', 'Mixed polarity', 'Mixture of positive and negative images.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, '|', 'No attempt to code', '', 'biblio'); --- category: authority tag: 050 file: www.loc.gov/marc/authority/concise/ad050.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_050_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_050_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_050_ind_2', BTRIM($label$ - -Second - Source of call number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_050_ind_2', '0', 'Assigned by LC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_050_ind_2', '4', 'Assigned by agency other than LC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '050', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 052 file: www.loc.gov/marc/authority/concise/ad052.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_052_ind_1', BTRIM($label$ - -First - Code source - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_052_ind_1', '#', 'Library of Congress Classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_052_ind_1', '1', 'U.S. Dept. of Defense Classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_052_ind_1', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_052_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_052_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '052', 'a', 'Geographic classification area code (NR) -Four- to six-character numeric or alphanumeric code for the main geographic area - associated with the heading. -Code is derived from the LC class G schedule by dropping the letter G.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 053 file: www.loc.gov/marc/authority/concise/ad053.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_053_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_053_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_053_ind_2', BTRIM($label$ - -Second - Source of classification number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_053_ind_2', '0', 'Assigned by LC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_053_ind_2', '4', 'Assigned by agency other than LC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '053', 'a', 'Classification number element-single number or beginning number of span (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 060 file: www.loc.gov/marc/authority/concise/ad060.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_060_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_060_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_060_ind_2', BTRIM($label$ - -Second - Source of call number - - Whether the source of the call number is the National Library of Medicine or - another organization. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_060_ind_2', '0', 'Assigned by NLM', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_060_ind_2', '4', 'Assigned by agency other than NLM', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '060', 'a', 'Classification number (NR) -Source of the classification number is National Library of Medicine - Classification that is maintained by the NLM. NLM also determines which - Library of Congress Classification schedules are used to augment the - NLM scheme.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 070 file: www.loc.gov/marc/authority/concise/ad070.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_070_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_070_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_070_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_070_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '070', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 075 file: www.loc.gov/marc/authority/concise/ad075.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_075_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_075_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_075_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_075_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '075', 'a', 'Type of entity term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 080 file: www.loc.gov/marc/authority/concise/ad080.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_080_ind_1', BTRIM($label$ - -First - Type of edition - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_080_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_080_ind_1', '0', 'Full', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_080_ind_1', '1', 'Abridged', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_080_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_080_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '080', 'a', 'Universal Decimal Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 087 file: www.loc.gov/marc/authority/concise/ad087.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_087_ind_1', BTRIM($label$ - -First - Number source - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_087_ind_1', '#', 'Source specified in subfield $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_087_ind_1', '0', 'Superintendent of Documents Classification System', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_087_ind_1', '1', 'Government of Canada Publications: Outline of Classification', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_087_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_087_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '087', 'a', 'Classification number element-Single number of beginning number of span (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 673 file: www.loc.gov/marc/authority/concise/ad673.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_673_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_673_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_673_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '673', 'a', 'Title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 885 file: www.loc.gov/marc/authority/concise/ad885.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_885_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_885_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_885_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_885_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '885', 'a', 'Matching information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 033 file: www.loc.gov/marc/bibliographic/concise/bd033.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_033_ind_1', BTRIM($label$ - -First - Type of date in subfield $a - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_1', '#', 'No date information', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_1', '0', 'Single date', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_1', '1', 'Multiple single dates', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_1', '2', 'Range of dates', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_033_ind_2', BTRIM($label$ - -Second - Type of event - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_2', '0', 'Capture - Pertains to the recording of sound, the filming of visual images, the making or - producing of an item, or other form of creation of an item.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_2', '1', 'Broadcast - Pertains to the broadcasting (i.e., transmission) or re-broadcasting of sound - or visual images.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_033_ind_2', '2', 'Finding - Pertains to the finding of a naturally occurring object.', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '033', 'a', 'Formatted date/time (R) -Seventeen characters, recorded in the pattern yyyymmddhhmm+-hmm, that - indicate the actual or approximate date (yyyymmdd)/time (hhmm) - of capture, finding, or broadcast and Time Differential Factor (+-hhmm) - information. A hyphen (-) is used for unknown digits in the year/month/day - segment. Within each segment, the data is right justified and any unused position - contains a zero.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 050 file: www.loc.gov/marc/bibliographic/concise/bd050.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_050_ind_1', BTRIM($label$ - -First - Existence in LC collection - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_050_ind_1', '#', 'No information provided - Used for all call numbers assigned by agencies other than the Library of - Congress.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_050_ind_1', '0', 'Item is in LC - Other agencies should use this value when transcribing from LC cataloging copy - on which the call number is neither enclosed within brackets nor preceded by a - Maltese cross.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_050_ind_1', '1', 'Item is not in LC - Used by other agencies when transcribing from LC copy on which the call number - appears in brackets or is preceded by a Maltese cross. Brackets that - customarily surround call numbers for items not in LC are not carried in the - MARC record; they may be generated for display.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_050_ind_2', BTRIM($label$ - -Second - Source of call number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_050_ind_2', '0', 'Assigned by LC - Used when an institution is transcribing from LC cataloging copy.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_050_ind_2', '4', 'Assigned by agency other than LC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '050', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 052 file: www.loc.gov/marc/bibliographic/concise/bd052.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_052_ind_1', BTRIM($label$ - -First - Code source - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_052_ind_1', '#', 'Library of Congress Classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_052_ind_1', '1', 'U.S. Dept. of Defense Classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_052_ind_1', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_052_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_052_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '052', 'a', 'Geographic classification area code (NR) -Numeric or alphanumeric code that represents the main geographic area covered by an - item.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 055 file: www.loc.gov/marc/bibliographic/concise/bd055.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_055_ind_1', BTRIM($label$ - -First - Existence in LAC collection - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_1', '#', 'Information not provided - Used in any record input by an institution other than LAC.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_1', '0', 'Work held by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_1', '1', 'Work not held by LAC', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_055_ind_2', BTRIM($label$ - -Second - Type, completeness, source of class/call number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '0', 'LC-based call number assigned by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '1', 'Complete LC class number assigned by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '2', 'Incomplete LC class number assigned by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '3', 'LC-based call number assigned by the contributing library', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '4', 'Complete LC class number assigned by the contributing library', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '5', 'Incomplete LC class number assigned by the contributing library', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '6', 'Other call number assigned by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '7', 'Other class number assigned by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '8', 'Other call number assigned by the contributing library', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_055_ind_2', '9', 'Other class number assigned by the contributing library', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '055', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 060 file: www.loc.gov/marc/bibliographic/concise/bd060.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_060_ind_1', BTRIM($label$ - -First - Existence in NLM collection - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_060_ind_1', '#', 'No information provided - Used for call numbers assigned by an organization other than NLM.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_060_ind_1', '0', 'Item is in NLM', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_060_ind_1', '1', 'Item is not in NLM', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_060_ind_2', BTRIM($label$ - -Second - Source of call number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_060_ind_2', '0', 'Assigned by NLM', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_060_ind_2', '4', 'Assigned by agency other than NLM', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '060', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 070 file: www.loc.gov/marc/bibliographic/concise/bd070.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_070_ind_1', BTRIM($label$ - -First - Existence in NAL collection - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_070_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_070_ind_1', '0', 'Item is in NAL', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_070_ind_1', '1', 'Item is not in NAL', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_070_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_070_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '070', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 080 file: www.loc.gov/marc/bibliographic/concise/bd080.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_080_ind_1', BTRIM($label$ - -First - Type of edition - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_080_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_080_ind_1', '0', 'Full', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_080_ind_1', '1', 'Abridged', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_080_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_080_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '080', 'a', 'Universal Decimal Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 085 file: www.loc.gov/marc/bibliographic/concise/bd085.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_085_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_085_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_085_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_085_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '085', 'a', 'Number where instructions are found-single - number or beginning number of span (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 086 file: www.loc.gov/marc/bibliographic/concise/bd086.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_086_ind_1', BTRIM($label$ - -First - Number source - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_086_ind_1', '#', 'Source specified in subfield $2 - Classification number other than the U.S. or Canadian scheme.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_086_ind_1', '0', 'Superintendent of Documents Classification System - Assigned by the U.S Government Printing Office. Supt. of Docs. no.: - may be generated for display.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_086_ind_1', '1', 'Government of Canada Publications: Outline of Classification', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_086_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_086_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '086', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 243 file: www.loc.gov/marc/bibliographic/concise/bd243.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_243_ind_1', BTRIM($label$ - -First - Uniform title printed or displayed - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_1', '0', 'Not printed or displayed', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_1', '1', 'Printed or displayed', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_243_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_243_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '243', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 257 file: www.loc.gov/marc/bibliographic/concise/bd257.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_257_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_257_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_257_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_257_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '257', 'a', 'Country of producing entity (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 337 file: www.loc.gov/marc/bibliographic/concise/bd337.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_337_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_337_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_337_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_337_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '337', 'a', 'Media type term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 338 file: www.loc.gov/marc/bibliographic/concise/bd338.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_338_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_338_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_338_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_338_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '338', 'a', 'Carrier type term (R) -Term for the category of carrier used to convey the content of the resource.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 346 file: www.loc.gov/marc/bibliographic/concise/bd346.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_346_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_346_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_346_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_346_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '346', 'a', 'Video format (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 347 file: www.loc.gov/marc/bibliographic/concise/bd347.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_347_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_347_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_347_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_347_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '347', 'a', 'File type (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 567 file: www.loc.gov/marc/bibliographic/concise/bd567.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_567_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_567_ind_1', '#', 'Methodology', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_567_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_567_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_567_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '567', 'a', 'Methodology note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 647 file: www.loc.gov/marc/bibliographic/concise/bd647.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_647_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_647_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_647_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '647', 'a', 'Named event (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 654 file: www.loc.gov/marc/bibliographic/concise/bd654.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_654_ind_1', BTRIM($label$ - -First - Level of subject - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_654_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_654_ind_1', '0', 'No level specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_654_ind_1', '1', 'Primary', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_654_ind_1', '2', 'Secondary', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_654_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_654_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '654', 'a', 'Focus term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 656 file: www.loc.gov/marc/bibliographic/concise/bd656.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_656_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_656_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_656_ind_2', BTRIM($label$ - -Second - Source of term - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_656_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '656', 'a', 'Occupation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 657 file: www.loc.gov/marc/bibliographic/concise/bd657.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_657_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_657_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_657_ind_2', BTRIM($label$ - -Second - Source of term - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_657_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '657', 'a', 'Function (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 662 file: www.loc.gov/marc/bibliographic/concise/bd662.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_662_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_662_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_662_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_662_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '662', 'a', 'Country or larger entity (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 752 file: www.loc.gov/marc/bibliographic/concise/bd752.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_752_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_752_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_752_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_752_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '752', 'a', 'Country or larger entity (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 753 file: www.loc.gov/marc/bibliographic/concise/bd753.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_753_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_753_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_753_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_753_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '753', 'a', 'Make and model of machine (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 754 file: www.loc.gov/marc/bibliographic/concise/bd754.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_754_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_754_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_754_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_754_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '754', 'a', 'Taxonomic name (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 885 file: www.loc.gov/marc/bibliographic/concise/bd885.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_885_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_885_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_885_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_885_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '885', 'a', 'Matching information (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 043 file: www.loc.gov/marc/bibliographic/concise/bd043.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_043_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_043_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_043_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_043_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '043', 'a', 'Geographic area code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 345 file: www.loc.gov/marc/bibliographic/concise/bd345.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_345_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_345_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_345_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_345_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '345', 'a', 'Presentation format (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 881 file: www.loc.gov/marc/bibliographic/concise/bd881.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_881_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_881_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_881_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_881_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '881', 'a', 'Manifestation statement, high-level/general (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 856 file: www.loc.gov/marc/authority/concise/ad856.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_856_ind_1', BTRIM($label$ - -First - Access method - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '0', 'Email', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '1', 'FTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '2', 'Remote login (Telnet)', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '3', 'Dial-up', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '4', 'HTTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_1', '7', 'Method specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_856_ind_2', BTRIM($label$ - -Second - Relationship - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '0', 'Resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '1', 'Version of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '2', 'Related resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '3', 'Component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '4', 'Version of component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_856_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '856', 'a', 'Host name (R) -Fully qualified domain (host name) of the electronic location. It contains a - network address which is repeated if there is more than one address for the same - host.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 856 file: www.loc.gov/marc/bibliographic/concise/bd856.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_856_ind_1', BTRIM($label$ - -First - Access method - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '0', 'Email', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '1', 'FTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '2', 'Remote login (Telnet)', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '3', 'Dial-up', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '4', 'HTTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_1', '7', 'Method specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_856_ind_2', BTRIM($label$ - -Second - Relationship - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '0', 'Resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '1', 'Version of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '2', 'Related resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '3', 'Component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '4', 'Version of component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_856_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '856', 'a', 'Host name (R) -Fully qualified domain (host name) of the electronic location. It contains a - network address which is repeated if there is more than one address for the same - host.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 022 file: www.loc.gov/marc/authority/concise/ad022.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_022_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_022_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_022_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_022_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '022', 'a', 'International Standard Serial Number (NR) -Valid ISSN for the continuing resource. ISSN may be generated for - display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 023 file: www.loc.gov/marc/authority/concise/ad023.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_023_ind_1', BTRIM($label$ - -First - Type of Cluster ISSN - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_023_ind_1', '0', 'ISSN-L', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_023_ind_1', '1', 'ISSN-H', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_023_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_023_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '023', 'a', 'Cluster ISSN (NR) -As designated by the ISSN International Centre, Cluster ISSNs group together resources - - with specific relationships to each other such as medium versions (ISSN-L), and clusters - - such as earlier and later titles (ISSN-H). The appropriate prefix for the ISSN type - - denoted by the first indicator value may be generated for display, for value 0: ISSN-L; - for value 1: ISSN-H.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 371 file: www.loc.gov/marc/authority/concise/ad371.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_371_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_371_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_371_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_371_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '371', 'a', 'Address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 372 file: www.loc.gov/marc/authority/concise/ad372.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_372_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_372_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_372_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_372_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '372', 'a', 'Field of activity (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 374 file: www.loc.gov/marc/authority/concise/ad374.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_374_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_374_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_374_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_374_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '374', 'a', 'Occupation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 376 file: www.loc.gov/marc/authority/concise/ad376.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_376_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_376_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_376_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_376_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '376', 'a', 'Type of family (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 022 file: www.loc.gov/marc/bibliographic/concise/bd022.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_022_ind_1', BTRIM($label$ - -First - Level of international interest - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_022_ind_1', '#', 'No level specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_022_ind_1', '0', 'Continuing resource of international interest', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_022_ind_1', '1', 'Continuing resource not of international interest', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_022_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_022_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '022', 'a', 'International Standard Serial Number (NR) -Valid ISSN for the continuing resource. ISSN may be generated for - display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 023 file: www.loc.gov/marc/bibliographic/concise/bd023.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_023_ind_1', BTRIM($label$ - -First - Type of Cluster ISSN - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_023_ind_1', '0', 'ISSN-L', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_023_ind_1', '1', 'ISSN-H', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_023_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_023_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '023', 'a', 'Cluster ISSN (NR) -As designated by the ISSN International Centre, Cluster ISSNs group together resources - - with specific relationships to each other such as medium versions (ISSN-L), and clusters - - such as earlier and later titles (ISSN-H). The appropriate prefix for the ISSN type - - denoted by the first indicator value may be generated for display, for value 0: ISSN-L; - for value 1: ISSN-H.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 532 file: www.loc.gov/marc/bibliographic/concise/bd532.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_532_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_532_ind_1', '0', 'Accessibility technical details', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_532_ind_1', '1', 'Accessibility features', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_532_ind_1', '2', 'Accessibility deficiencies', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_532_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_532_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_532_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '532', 'a', 'Summary of accessibility (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 024 file: www.loc.gov/marc/authority/concise/ad024.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_024_ind_1', BTRIM($label$ - -First - Type of standard number or code - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_024_ind_1', '7', 'Source specified in subfield $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_024_ind_1', '8', 'Unspecified type of standard number or code', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_024_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_024_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '024', 'a', 'Standard number or code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 034 file: www.loc.gov/marc/authority/concise/ad034.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_034_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_034_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_034_ind_2', BTRIM($label$ - -Second - Type of ring - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_034_ind_2', '#', 'Not applicable', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_034_ind_2', '0', 'Outer ring', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_034_ind_2', '1', 'Exclusion ring', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '034', 'd', 'Coordinates - westernmost longitude (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 043 file: www.loc.gov/marc/authority/concise/ad043.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_043_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_043_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_043_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_043_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '043', 'a', 'Geographic area code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 065 file: www.loc.gov/marc/authority/concise/ad065.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_065_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_065_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_065_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_065_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '065', 'a', 'Classification number element-single number or beginning of span (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 100 file: www.loc.gov/marc/authority/concise/ad100.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_100_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_100_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_100_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_100_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_100_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_100_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '100', 'a', 'Personal name (NR) -Surname and/or forename; letters, initials, abbreviations, phrases, or numbers - used in place of a name; or a family name.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 110 file: www.loc.gov/marc/authority/concise/ad110.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_110_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_110_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_110_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_110_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_110_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_110_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '110', 'a', 'Corporate name or jurisdiction name as entry element (NR) -Name of a corporate body, or the first entity when subordinate units are present; - a jurisdiction name under which a corporate body, city section, or a title of a - work is entered; or a jurisdictional name that is also an ecclesiastical - entity.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 111 file: www.loc.gov/marc/authority/concise/ad111.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_111_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_111_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_111_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_111_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_111_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_111_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '111', 'a', 'Meeting name or jurisdiction name as entry element (NR) -Name of a meeting or a jurisdiction name under which a meeting name is - entered.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 130 file: www.loc.gov/marc/authority/concise/ad130.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_130_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_130_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_130_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '130', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 147 file: www.loc.gov/marc/authority/concise/ad147.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_147_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_147_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_147_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_147_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '147', 'a', 'Named event (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 148 file: www.loc.gov/marc/authority/concise/ad148.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_148_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_148_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_148_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_148_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '148', 'a', 'Chronological term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 150 file: www.loc.gov/marc/authority/concise/ad150.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_150_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_150_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_150_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_150_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '150', 'a', 'Topical term or geographic name entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 151 file: www.loc.gov/marc/authority/concise/ad151.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_151_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_151_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_151_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_151_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '151', 'a', 'Geographic name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 155 file: www.loc.gov/marc/authority/concise/ad155.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_155_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_155_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_155_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_155_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '155', 'a', 'Genre/form term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 162 file: www.loc.gov/marc/authority/concise/ad162.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_162_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_162_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_162_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_162_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '162', 'a', 'Medium of performance term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 180 file: www.loc.gov/marc/authority/concise/ad180.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_180_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_180_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_180_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_180_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '180', 'v', 'Form subdivision (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 181 file: www.loc.gov/marc/authority/concise/ad181.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_181_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_181_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_181_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_181_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '181', 'v', 'Form subdivision (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 182 file: www.loc.gov/marc/authority/concise/ad182.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_182_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_182_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_182_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_182_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '182', 'v', 'Form subdivision (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 185 file: www.loc.gov/marc/authority/concise/ad185.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_185_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_185_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_185_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_185_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '185', 'v', 'Form subdivision (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 260 file: www.loc.gov/marc/authority/concise/ad260.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_260_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_260_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_260_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_260_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '260', 'a', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 335 file: www.loc.gov/marc/authority/concise/ad335.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_335_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_335_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_335_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_335_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '335', 'a', 'Extension plan term (NR) -Extension plan of the work being described.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 336 file: www.loc.gov/marc/authority/concise/ad336.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_336_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_336_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_336_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_336_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '336', 'a', 'Content type term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 348 file: www.loc.gov/marc/authority/concise/ad348.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_348_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_348_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_348_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_348_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '348', 'a', 'Format of notated music term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 360 file: www.loc.gov/marc/authority/concise/ad360.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_360_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_360_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_360_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_360_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '360', 'a', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 370 file: www.loc.gov/marc/authority/concise/ad370.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_370_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_370_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_370_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_370_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '370', 'a', 'Place of birth (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 373 file: www.loc.gov/marc/authority/concise/ad373.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_373_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_373_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_373_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_373_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '373', 'a', 'Associated group (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 375 file: www.loc.gov/marc/authority/concise/ad375.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_375_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_375_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_375_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_375_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '375', 'a', 'Gender (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 377 file: www.loc.gov/marc/authority/concise/ad377.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_377_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_377_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_377_ind_2', BTRIM($label$ - -Second - Source of code - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_377_ind_2', '#', 'MARC language code - Code from: MARC Code List - for Languages.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_377_ind_2', '7', 'Source specified in $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '377', 'a', 'Language code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 378 file: www.loc.gov/marc/authority/concise/ad378.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_378_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_378_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_378_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_378_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '378', 'q', 'Fuller form of personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 380 file: www.loc.gov/marc/authority/concise/ad380.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_380_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_380_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_380_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_380_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '380', 'a', 'Form of work (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 381 file: www.loc.gov/marc/authority/concise/ad381.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_381_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_381_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_381_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_381_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '381', 'a', 'Other distinguishing characteristic (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 382 file: www.loc.gov/marc/authority/concise/ad382.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_382_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_382_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_382_ind_1', '0', 'Medium of performance', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_382_ind_1', '1', 'Partial medium of performance', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_382_ind_1', '2', 'Medium of performance of musical content of representative expression', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_382_ind_1', '3', 'Partial medium of performance of musical content of representative expression', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_382_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_382_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '382', 'a', 'Medium of performance (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 383 file: www.loc.gov/marc/authority/concise/ad383.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_383_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_383_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_383_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_383_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '383', 'a', 'Serial number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 384 file: www.loc.gov/marc/authority/concise/ad384.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_384_ind_1', BTRIM($label$ - -First - Key type - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_384_ind_1', '#', 'Relationship to original unknown', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_384_ind_1', '0', 'Original key', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_384_ind_1', '1', 'Transposed key', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_384_ind_1', '2', 'Key of representative expression', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_384_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_384_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '384', 'a', 'Key (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 385 file: www.loc.gov/marc/authority/concise/ad385.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_385_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_385_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_385_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_385_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '385', 'a', 'Audience term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 386 file: www.loc.gov/marc/authority/concise/ad386.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_386_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_386_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_386_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_386_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '386', 'a', 'Creator/contributor term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 387 file: www.loc.gov/marc/authority/concise/ad387.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_387_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_387_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_387_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_387_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '387', 'a', 'Aspect ratio of representative expression (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 388 file: www.loc.gov/marc/authority/concise/ad388.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_388_ind_1', BTRIM($label$ - -First - Type of time period - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_388_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_388_ind_1', '1', 'Creation of work', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_388_ind_1', '2', 'Creation of aggregate work', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_388_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_388_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '388', 'a', 'Time period of creation term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 400 file: www.loc.gov/marc/authority/concise/ad400.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_400_ind_1', BTRIM($label$ - -First - Type of personal name element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_400_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_400_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_400_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_400_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_400_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '400', 'a', 'Personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 410 file: www.loc.gov/marc/authority/concise/ad410.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_410_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_410_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_410_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_410_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_410_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_410_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '410', 'a', 'Corporate name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 411 file: www.loc.gov/marc/authority/concise/ad411.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_411_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_411_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_411_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_411_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_411_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_411_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '411', 'a', 'Meeting name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 430 file: www.loc.gov/marc/authority/concise/ad430.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_430_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_430_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_430_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '430', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 447 file: www.loc.gov/marc/authority/concise/ad447.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_447_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_447_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_447_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_447_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '447', 'a', 'Named event (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 448 file: www.loc.gov/marc/authority/concise/ad448.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_448_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_448_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_448_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_448_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '448', 'a', 'Chronological term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 450 file: www.loc.gov/marc/authority/concise/ad450.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_450_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_450_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_450_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_450_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '450', 'a', 'Topical term or geographic name entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 451 file: www.loc.gov/marc/authority/concise/ad451.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_451_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_451_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_451_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_451_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '451', 'a', 'Geographic name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 455 file: www.loc.gov/marc/authority/concise/ad455.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_455_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_455_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_455_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_455_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '455', 'a', 'Genre/form term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 462 file: www.loc.gov/marc/authority/concise/ad462.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_462_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_462_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_462_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_462_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '462', 'a', 'Medium of performance term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 480 file: www.loc.gov/marc/authority/concise/ad480.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_480_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_480_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_480_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_480_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '480', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 481 file: www.loc.gov/marc/authority/concise/ad481.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_481_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_481_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_481_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_481_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '481', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 482 file: www.loc.gov/marc/authority/concise/ad482.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_482_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_482_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_482_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_482_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '482', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 485 file: www.loc.gov/marc/authority/concise/ad485.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_485_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_485_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_485_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_485_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '485', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 500 file: www.loc.gov/marc/authority/concise/ad500.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_500_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_500_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_500_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_500_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_500_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_500_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '500', 'a', 'Personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 510 file: www.loc.gov/marc/authority/concise/ad510.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_510_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_510_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_510_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_510_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_510_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_510_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '510', 'a', 'Corporate name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 511 file: www.loc.gov/marc/authority/concise/ad511.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_511_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_511_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_511_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_511_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_511_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_511_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '511', 'a', 'Meeting name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 530 file: www.loc.gov/marc/authority/concise/ad530.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_530_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_530_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_530_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '530', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 547 file: www.loc.gov/marc/authority/concise/ad547.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_547_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_547_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_547_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_547_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '547', 'a', 'Named event (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 548 file: www.loc.gov/marc/authority/concise/ad548.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_548_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_548_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_548_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_548_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '548', 'a', 'Chronological term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 550 file: www.loc.gov/marc/authority/concise/ad550.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_550_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_550_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_550_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_550_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '550', 'a', 'Topical term or geographic name entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 551 file: www.loc.gov/marc/authority/concise/ad551.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_551_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_551_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_551_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_551_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '551', 'a', 'Geographic name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 555 file: www.loc.gov/marc/authority/concise/ad555.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_555_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_555_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_555_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_555_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '555', 'a', 'Genre/form term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 562 file: www.loc.gov/marc/authority/concise/ad562.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_562_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_562_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_562_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_562_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '562', 'a', 'Medium of performance term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 580 file: www.loc.gov/marc/authority/concise/ad580.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_580_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_580_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_580_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_580_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '580', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 581 file: www.loc.gov/marc/authority/concise/ad581.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_581_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_581_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_581_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_581_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '581', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 582 file: www.loc.gov/marc/authority/concise/ad582.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_582_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_582_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_582_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_582_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '582', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 585 file: www.loc.gov/marc/authority/concise/ad585.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_585_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_585_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_585_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_585_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '585', 'i', 'Relationship information (R) -See Tracings and References','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 670 file: www.loc.gov/marc/authority/concise/ad670.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_670_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_670_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_670_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_670_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '670', 'a', 'Source citation (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 672 file: www.loc.gov/marc/authority/concise/ad672.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_672_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_672_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_672_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '672', 'a', 'Title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 675 file: www.loc.gov/marc/authority/concise/ad675.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_675_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_675_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_675_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_675_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '675', 'a', 'Source citation (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 677 file: www.loc.gov/marc/authority/concise/ad677.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_677_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_677_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_677_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_677_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '677', 'a', 'Definition (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 678 file: www.loc.gov/marc/authority/concise/ad678.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_678_ind_1', BTRIM($label$ - -First - Type of data - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_678_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_678_ind_1', '0', 'Biographical sketch', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_678_ind_1', '1', 'Administrative history', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_678_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_678_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '678', 'a', 'Biographical or historical data (R) -Brief statement providing biographical information about an individual or family. - It may - also contain historical and administrative information relating to an - organization.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 680 file: www.loc.gov/marc/authority/concise/ad680.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_680_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_680_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_680_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_680_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '680', 'a', 'Heading or subdivision term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 700 file: www.loc.gov/marc/authority/concise/ad700.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_700_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_700_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '0', ' - Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '2', ' - Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '5', ' - Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '6', ' - Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_700_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '700', 'a', 'Personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 710 file: www.loc.gov/marc/authority/concise/ad710.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_710_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_710_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '0', ' - Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '2', ' - Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '5', ' - Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '6', ' - Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_710_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '710', 'a', 'Corporate name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 711 file: www.loc.gov/marc/authority/concise/ad711.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_711_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_711_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '0', ' - Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '2', ' - Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '5', ' - Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '6', ' - Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_711_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '711', 'a', 'Meeting name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 730 file: www.loc.gov/marc/authority/concise/ad730.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_730_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_730_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '0', ' - Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '2', ' - Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '5', ' - Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '6', ' - Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_730_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '730', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 747 file: www.loc.gov/marc/authority/concise/ad747.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_747_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_747_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_747_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '747', 'a', 'Named event (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 748 file: www.loc.gov/marc/authority/concise/ad748.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_748_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_748_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_748_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '748', 'a', 'Chronological term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 750 file: www.loc.gov/marc/authority/concise/ad750.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_750_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_750_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_750_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '750', 'a', 'Topical term or geographic name entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 751 file: www.loc.gov/marc/authority/concise/ad751.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_751_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_751_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_751_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '751', 'a', 'Geographic name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 755 file: www.loc.gov/marc/authority/concise/ad755.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_755_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_755_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_755_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '755', 'a', 'Genre/form term as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 762 file: www.loc.gov/marc/authority/concise/ad762.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_762_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_762_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_762_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '762', 'a', 'Medium of performance term as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 780 file: www.loc.gov/marc/authority/concise/ad780.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_780_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_780_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_780_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '780', 'i', 'Relationship information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 781 file: www.loc.gov/marc/authority/concise/ad781.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_781_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_781_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_781_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '781', 'i', 'Relationship information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 782 file: www.loc.gov/marc/authority/concise/ad782.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_782_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_782_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_782_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '782', 'i', 'Relationship information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 785 file: www.loc.gov/marc/authority/concise/ad785.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_785_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_785_ind_2', BTRIM($label$ - -Second - Thesaurus - - Thesaurus or authority file from which the heading came. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_785_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '785', 'i', 'Relationship information (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 788 file: www.loc.gov/marc/authority/concise/ad788.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_788_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_788_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_788_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '788', 'a', 'Heading referred to (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 082 file: www.loc.gov/marc/bibliographic/concise/bd082.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_082_ind_1', BTRIM($label$ - -First - Type of edition - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_082_ind_1', '0', 'Full edition', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_082_ind_1', '1', 'Abridged edition', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_082_ind_1', '7', 'Other edition specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_082_ind_2', BTRIM($label$ - -Second - Source of classification number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_082_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_082_ind_2', '0', 'Assigned by LC - May be used by organizations transcribing - from LC copy.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_082_ind_2', '4', 'Assigned by agency other than LC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '082', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 083 file: www.loc.gov/marc/bibliographic/concise/bd083.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_083_ind_1', BTRIM($label$ - -First - Type of edition - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_083_ind_1', '0', 'Full edition', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_083_ind_1', '1', 'Abridged edition', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_083_ind_1', '7', 'Other edition specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_083_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_083_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '083', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 084 file: www.loc.gov/marc/bibliographic/concise/bd084.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_084_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_084_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_084_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_084_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '084', 'a', 'Classification number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 100 file: www.loc.gov/marc/bibliographic/concise/bd100.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_100_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_100_ind_1', '0', 'Forename - Forename or a name consisting of words, initials, letters, etc., that are - formatted in direct order.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_100_ind_1', '1', 'Surname - Single or multiple surname formatted in inverted order or a single name without - forenames that is known to be a surname.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_100_ind_1', '3', 'Family name - Name represents a family, clan, dynasty, house, or other such group and may be - formatted in direct or inverted order.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_100_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_100_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '100', 'a', 'Personal name (NR) -Surname and/or forename; letters, initials, abbreviations, phrases, or numbers - used in place of a name; or a family name.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 110 file: www.loc.gov/marc/bibliographic/concise/bd110.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_110_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_110_ind_1', '0', 'Inverted name - Corporate name begins with a personal name in inverted order.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_110_ind_1', '1', 'Jurisdiction name - Name of a jurisdiction that is also an ecclesiastical entity or is a - jurisdiction name under which a corporate name or a title of a work is - entered.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_110_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_110_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_110_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '110', 'a', 'Corporate name or jurisdiction name as entry element (NR) -Name of a corporate body or the first entity when subordinate units are present; a - jurisdiction name under which a corporate body, city section, or a title of a work - is entered; or a jurisdiction name that is also an ecclesiastical entity.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 111 file: www.loc.gov/marc/bibliographic/concise/bd111.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_111_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_111_ind_1', '0', 'Inverted name - Meeting name begins with a personal name in inverted order.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_111_ind_1', '1', 'Jurisdiction name - Jurisdiction name under which a meeting name is entered.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_111_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_111_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_111_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '111', 'a', 'Meeting name or jurisdiction name as entry element (NR) -Name of a meeting, or the first entity when subordinate units are present; or a - jurisdiction name under which a meeting name is entered.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 130 file: www.loc.gov/marc/bibliographic/concise/bd130.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_130_ind_1', BTRIM($label$ - -First - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_1', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_130_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_130_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '130', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 210 file: www.loc.gov/marc/bibliographic/concise/bd210.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_210_ind_1', BTRIM($label$ - -First - Title added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_210_ind_1', '0', 'No added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_210_ind_1', '1', 'Added entry', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_210_ind_2', BTRIM($label$ - -Second - Type - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_210_ind_2', '#', 'Abbreviated key title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_210_ind_2', '0', 'Other abbreviated title', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '210', 'a', 'Abbreviated title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 240 file: www.loc.gov/marc/bibliographic/concise/bd240.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_240_ind_1', BTRIM($label$ - -First - Uniform title printed or displayed - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_1', '0', 'Not printed or displayed', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_1', '1', 'Printed or displayed', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_240_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_240_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '240', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 245 file: www.loc.gov/marc/bibliographic/concise/bd245.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_245_ind_1', BTRIM($label$ - -First - Title added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_1', '0', 'No added entry - No title added entry is made, either because no title added entry is desired or - because the title added entry is not traced the same as the title in field - 245.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_1', '1', 'Added entry - Desired title added entry is the same as the title in field 245.', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_245_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_245_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '245', 'a', 'Title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 246 file: www.loc.gov/marc/bibliographic/concise/bd246.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_246_ind_1', BTRIM($label$ - -First - Note/added entry controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_1', '0', 'Note, no added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_1', '1', 'Note, added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_1', '2', 'No note, no added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_1', '3', 'No note, added entry', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_246_ind_2', BTRIM($label$ - -Second - Type of title - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '#', 'No type specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '0', 'Portion of title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '1', 'Parallel title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '2', 'Distinctive title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '3', 'Other title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '4', 'Cover title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '5', 'Added title page title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '6', 'Caption title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '7', 'Running title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_246_ind_2', '8', 'Spine title', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '246', 'a', 'Title proper/short title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 247 file: www.loc.gov/marc/bibliographic/concise/bd247.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_247_ind_1', BTRIM($label$ - -First - Title added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_247_ind_1', '0', 'No added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_247_ind_1', '1', 'Added entry', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_247_ind_2', BTRIM($label$ - -Second - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_247_ind_2', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_247_ind_2', '1', 'Do not display note', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '247', 'a', 'Title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 250 file: www.loc.gov/marc/bibliographic/concise/bd250.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_250_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_250_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_250_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_250_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '250', 'a', 'Edition statement (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 255 file: www.loc.gov/marc/bibliographic/concise/bd255.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_255_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_255_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_255_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_255_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '255', 'a', 'Statement of scale (NR) -Entire scale statement including any equivalency statements, vertical scales or - vertical exaggeration statements for relief models and other three-dimensional - items.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 256 file: www.loc.gov/marc/bibliographic/concise/bd256.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_256_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_256_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_256_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_256_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '256', 'a', 'Computer file characteristics (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 264 file: www.loc.gov/marc/bibliographic/concise/bd264.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_264_ind_1', BTRIM($label$ - -First - Sequence of statements - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_1', '#', 'Not applicable/No information provided/Earliest', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_1', '2', 'Intervening', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_1', '3', 'Current/Latest', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_264_ind_2', BTRIM($label$ - -Second - Function of entity - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_2', '0', 'Production', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_2', '1', 'Publication', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_2', '2', 'Distribution', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_2', '3', 'Manufacture', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_264_ind_2', '4', 'Copyright notice date', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '264', 'a', 'Place of production, publication, distribution, manufacture (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 300 file: www.loc.gov/marc/bibliographic/concise/bd300.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_300_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_300_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_300_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_300_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '300', 'a', 'Extent (R) -Number of physical pages, volumes, cassettes, total playing time, etc., of each - type of unit.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 335 file: www.loc.gov/marc/bibliographic/concise/bd335.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_335_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_335_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_335_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_335_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '335', 'a', 'Extension plan term (NR) -Extension plan of the work being described.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 336 file: www.loc.gov/marc/bibliographic/concise/bd336.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_336_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_336_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_336_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_336_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '336', 'a', 'Content type term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 340 file: www.loc.gov/marc/bibliographic/concise/bd340.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_340_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_340_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_340_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_340_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '340', 'a', 'Material base and configuration (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 348 file: www.loc.gov/marc/bibliographic/concise/bd348.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_348_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_348_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_348_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_348_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '348', 'a', 'Format of notated music term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 370 file: www.loc.gov/marc/bibliographic/concise/bd370.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_370_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_370_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_370_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_370_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '370', 'c', 'Associated country (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 377 file: www.loc.gov/marc/bibliographic/concise/bd377.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_377_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_377_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_377_ind_2', BTRIM($label$ - -Second - Source of code - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_377_ind_2', '#', 'MARC language code - Code from: MARC Code List - for Languages.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_377_ind_2', '7', 'Source specified in $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '377', 'a', 'Language code (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 380 file: www.loc.gov/marc/bibliographic/concise/bd380.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_380_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_380_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_380_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_380_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '380', 'a', 'Form of work (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 381 file: www.loc.gov/marc/bibliographic/concise/bd381.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_381_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_381_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_381_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_381_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '381', 'a', 'Other distinguishing characteristic (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 382 file: www.loc.gov/marc/bibliographic/concise/bd382.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_382_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_1', '0', 'Medium of performance', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_1', '1', 'Partial medium of performance', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_1', '2', 'Medium of performance of musical content of representative expression', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_1', '3', 'Partial medium of performance of musical content of representative expression', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_382_ind_2', BTRIM($label$ - -Second - Access control - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_2', '0', 'Not intended for access', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_382_ind_2', '1', 'Intended for access', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '382', 'a', 'Medium of performance (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 383 file: www.loc.gov/marc/bibliographic/concise/bd383.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_383_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_383_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_383_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_383_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '383', 'a', 'Serial number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 384 file: www.loc.gov/marc/bibliographic/concise/bd384.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_384_ind_1', BTRIM($label$ - -First - Key type - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_384_ind_1', '#', 'Relationship to original unknown', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_384_ind_1', '0', 'Original key', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_384_ind_1', '1', 'Transposed key', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_384_ind_1', '2', 'Key of representative expression', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_384_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_384_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '384', 'a', 'Key (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 385 file: www.loc.gov/marc/bibliographic/concise/bd385.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_385_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_385_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_385_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_385_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '385', 'a', 'Audience term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 386 file: www.loc.gov/marc/bibliographic/concise/bd386.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_386_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_386_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_386_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_386_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '386', 'a', 'Creator/contributor term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 387 file: www.loc.gov/marc/bibliographic/concise/bd387.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_387_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_387_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_387_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_387_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '387', 'a', 'Aspect ratio of representative expression (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 388 file: www.loc.gov/marc/bibliographic/concise/bd388.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_388_ind_1', BTRIM($label$ - -First - Type of time period - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_388_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_388_ind_1', '1', 'Creation of work', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_388_ind_1', '2', 'Creation of aggregate work', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_388_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_388_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '388', 'a', 'Time period of creation term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 490 file: www.loc.gov/marc/bibliographic/concise/bd490.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_490_ind_1', BTRIM($label$ - -First - Series tracing policy - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_490_ind_1', '0', 'Series not traced', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_490_ind_1', '1', 'Series traced', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_490_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_490_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '490', 'a', 'Series statement (R) -Series title that may also contain a statement - of responsibility or other title information.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 500 file: www.loc.gov/marc/bibliographic/concise/bd500.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_500_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_500_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_500_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_500_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '500', 'a', 'General note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 501 file: www.loc.gov/marc/bibliographic/concise/bd501.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_501_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_501_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_501_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_501_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '501', 'a', 'With note (NR) -Entire text of the note, including the introductory phrase (e.g., With:, - On reel with:, Issued with, etc.).','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 502 file: www.loc.gov/marc/bibliographic/concise/bd502.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_502_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_502_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_502_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_502_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '502', 'a', 'Dissertation note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 505 file: www.loc.gov/marc/bibliographic/concise/bd505.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_505_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_505_ind_1', '0', 'Contents', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_505_ind_1', '1', 'Incomplete contents', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_505_ind_1', '2', 'Partial contents', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_505_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_505_ind_2', BTRIM($label$ - -Second - Level of content designation - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_505_ind_2', '#', 'Basic', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_505_ind_2', '0', 'Enhanced', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '505', 'a', 'Formatted contents note (NR) -Format of the note is determined by the relevant cataloging rules.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 507 file: www.loc.gov/marc/bibliographic/concise/bd507.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_507_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_507_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_507_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_507_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '507', 'a', 'Representative fraction of scale note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 508 file: www.loc.gov/marc/bibliographic/concise/bd508.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_508_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_508_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_508_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_508_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '508', 'a', 'Creation/production credits note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 510 file: www.loc.gov/marc/bibliographic/concise/bd510.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_510_ind_1', BTRIM($label$ - -First - Coverage/location in source - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_510_ind_1', '0', 'Coverage unknown', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_510_ind_1', '1', 'Coverage complete', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_510_ind_1', '2', 'Coverage is selective', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_510_ind_1', '3', 'Location in source not given', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_510_ind_1', '4', 'Location in source given', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_510_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_510_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '510', 'a', 'Name of source (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 515 file: www.loc.gov/marc/bibliographic/concise/bd515.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_515_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_515_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_515_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_515_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '515', 'a', 'Numbering peculiarities note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 518 file: www.loc.gov/marc/bibliographic/concise/bd518.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_518_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_518_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_518_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_518_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '518', 'a', 'Date/time and place of an event note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 520 file: www.loc.gov/marc/bibliographic/concise/bd520.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_520_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '#', 'Summary', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '0', 'Subject', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '1', 'Review', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '2', 'Scope and content', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '3', 'Abstract', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '4', 'Content advice', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_520_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_520_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '520', 'a', 'Summary, etc. (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 533 file: www.loc.gov/marc/bibliographic/concise/bd533.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_533_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_533_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_533_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_533_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '533', 'a', 'Type of reproduction (NR) -Introductory phrase that identifies the type of reproduction being described.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 546 file: www.loc.gov/marc/bibliographic/concise/bd546.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_546_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_546_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_546_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_546_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '546', 'a', 'Language note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 550 file: www.loc.gov/marc/bibliographic/concise/bd550.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_550_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_550_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_550_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_550_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '550', 'a', 'Issuing body note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 555 file: www.loc.gov/marc/bibliographic/concise/bd555.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_555_ind_1', BTRIM($label$ - -First - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_555_ind_1', '#', 'Indexes - Used to generate the display constant Indexes:.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_555_ind_1', '0', 'Finding aids - Used to generate the display constant Finding aids:.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_555_ind_1', '8', 'No display constant generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_555_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_555_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '555', 'a', 'Cumulative index/finding aids note (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 583 file: www.loc.gov/marc/bibliographic/concise/bd583.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_583_ind_1', BTRIM($label$ - -First - Privacy - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_583_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_583_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_583_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_583_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_583_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '583', 'a', 'Action (NR) -Standardized terminology descriptive of the action.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 600 file: www.loc.gov/marc/bibliographic/concise/bd600.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_600_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_600_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_600_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '600', 'a', 'Personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 610 file: www.loc.gov/marc/bibliographic/concise/bd610.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_610_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_610_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_610_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '610', 'a', 'Corporate name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 611 file: www.loc.gov/marc/bibliographic/concise/bd611.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_611_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_611_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_611_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '611', 'a', 'Meeting name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 630 file: www.loc.gov/marc/bibliographic/concise/bd630.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_630_ind_1', BTRIM($label$ - -First - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_1', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_630_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_630_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '630', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 648 file: www.loc.gov/marc/bibliographic/concise/bd648.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_648_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_648_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_648_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '648', 'a', 'Chronological term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 650 file: www.loc.gov/marc/bibliographic/concise/bd650.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_650_ind_1', BTRIM($label$ - -First - Level of subject - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_1', '0', 'No level specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_1', '1', 'Primary', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_1', '2', 'Secondary', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_650_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_650_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '650', 'a', 'Topical term or geographic name entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 651 file: www.loc.gov/marc/bibliographic/concise/bd651.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_651_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_651_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_651_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '651', 'a', 'Geographic name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 655 file: www.loc.gov/marc/bibliographic/concise/bd655.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_655_ind_1', BTRIM($label$ - -First - Type of heading - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_1', '#', 'Basic', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_1', '0', 'Faceted', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_655_ind_2', BTRIM($label$ - -Second - Thesaurus - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '0', 'Library of Congress Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '1', 'Library of Congress Children''s and Young Adults'' Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '2', 'Medical Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '3', 'National Agricultural Library subject authority file', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '4', 'Source not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '5', 'Canadian Subject Headings', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '6', 'Répertoire de vedettes-matière', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_655_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '655', 'a', 'Genre/form data or focus term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 700 file: www.loc.gov/marc/bibliographic/concise/bd700.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_700_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_700_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_700_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_700_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_700_ind_2', BTRIM($label$ - -Second - Type of added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_700_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_700_ind_2', '2', 'Analytical entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '700', 'a', 'Personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 710 file: www.loc.gov/marc/bibliographic/concise/bd710.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_710_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_710_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_710_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_710_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_710_ind_2', BTRIM($label$ - -Second - Type of added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_710_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_710_ind_2', '2', 'Analytical entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '710', 'a', 'Corporate name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 711 file: www.loc.gov/marc/bibliographic/concise/bd711.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_711_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_711_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_711_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_711_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_711_ind_2', BTRIM($label$ - -Second - Type of added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_711_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_711_ind_2', '2', 'Analytical entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '711', 'a', 'Meeting name or jurisdiction name as entry element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 751 file: www.loc.gov/marc/bibliographic/concise/bd751.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_751_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_751_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_751_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_751_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '751', 'a', 'Geographic name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 760 file: www.loc.gov/marc/bibliographic/concise/bd760.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_760_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_760_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_760_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_760_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_760_ind_2', '#', 'Main series', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_760_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '760', 'a', 'Main entry heading (NR) -Main entry heading from the 100 (Main Entry Personal Name), 110 (Main Entry Corporate - Name) or 111 (Main Entry Meeting Name) field of the related record.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 762 file: www.loc.gov/marc/bibliographic/concise/bd762.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_762_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_762_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_762_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_762_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_762_ind_2', '#', 'Has subseries', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_762_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '762', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 765 file: www.loc.gov/marc/bibliographic/concise/bd765.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_765_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_765_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_765_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_765_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_765_ind_2', '#', 'Translation of', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_765_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '765', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 767 file: www.loc.gov/marc/bibliographic/concise/bd767.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_767_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_767_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_767_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_767_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_767_ind_2', '#', 'Translated as', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_767_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '767', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 770 file: www.loc.gov/marc/bibliographic/concise/bd770.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_770_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_770_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_770_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_770_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_770_ind_2', '#', 'Has supplement', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_770_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '770', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 772 file: www.loc.gov/marc/bibliographic/concise/bd772.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_772_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_772_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_772_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_772_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_772_ind_2', '#', 'Supplement to', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_772_ind_2', '0', 'Parent', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_772_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '772', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 773 file: www.loc.gov/marc/bibliographic/concise/bd773.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_773_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_773_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_773_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_773_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_773_ind_2', '#', 'In', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_773_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '773', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 774 file: www.loc.gov/marc/bibliographic/concise/bd774.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_774_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_774_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_774_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_774_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_774_ind_2', '#', 'Constituent unit', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_774_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '774', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 775 file: www.loc.gov/marc/bibliographic/concise/bd775.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_775_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_775_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_775_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_775_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_775_ind_2', '#', 'Other edition available', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_775_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '775', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 776 file: www.loc.gov/marc/bibliographic/concise/bd776.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_776_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_776_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_776_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_776_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_776_ind_2', '#', 'Available in another form', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_776_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '776', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 777 file: www.loc.gov/marc/bibliographic/concise/bd777.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_777_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_777_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_777_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_777_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_777_ind_2', '#', 'Issued with', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_777_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '777', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 780 file: www.loc.gov/marc/bibliographic/concise/bd780.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_780_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_780_ind_2', BTRIM($label$ - -Second - Type of relationship - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '0', 'Continues', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '1', 'Continues in part', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '2', 'Supersedes', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '3', 'Supersedes in part', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '4', 'Formed by the union of ... and ...', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '5', 'Absorbed', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '6', 'Absorbed in part', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_780_ind_2', '7', 'Separated from', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '780', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 785 file: www.loc.gov/marc/bibliographic/concise/bd785.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_785_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_785_ind_2', BTRIM($label$ - -Second - Type of relationship - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '0', 'Continued by', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '1', 'Continued in part by', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '2', 'Superseded by', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '3', 'Superseded in part by', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '4', 'Absorbed by', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '5', 'Absorbed in part by', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '6', 'Split into ... and ...', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '7', 'Merged with ... to form ...', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_785_ind_2', '8', 'Changed back to', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '785', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 786 file: www.loc.gov/marc/bibliographic/concise/bd786.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_786_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_786_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_786_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_786_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_786_ind_2', '#', 'Data source', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_786_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '786', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 787 file: www.loc.gov/marc/bibliographic/concise/bd787.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_787_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_787_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_787_ind_1', '1', 'Do not display note - Textual note is contained in field 580 (Linking Entry Complexity Note).', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_787_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_787_ind_2', '#', 'Related item', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_787_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '787', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 788 file: www.loc.gov/marc/bibliographic/concise/bd788.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_788_ind_1', BTRIM($label$ - -First - Note controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_788_ind_1', '0', 'Display note', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_788_ind_1', '1', 'Do not display note', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_788_ind_2', BTRIM($label$ - -Second - Display constant controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_788_ind_2', '#', 'Parallel description in another language of cataloging', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_788_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '788', 'a', 'Main entry heading (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 800 file: www.loc.gov/marc/bibliographic/concise/bd800.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_800_ind_1', BTRIM($label$ - -First - Type of personal name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_800_ind_1', '0', 'Forename', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_800_ind_1', '1', 'Surname', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_800_ind_1', '3', 'Family name', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_800_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_800_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '800', 'a', 'Personal name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 810 file: www.loc.gov/marc/bibliographic/concise/bd810.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_810_ind_1', BTRIM($label$ - -First - Type of corporate name entry element - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_810_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_810_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_810_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_810_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_810_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '810', 'a', 'Corporate name or jurisdiction name as entry - element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 811 file: www.loc.gov/marc/bibliographic/concise/bd811.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_811_ind_1', BTRIM($label$ - -First - Type of meeting name entry element - - See the description of the first indicator - under field - 111. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_811_ind_1', '0', 'Inverted name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_811_ind_1', '1', 'Jurisdiction name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_811_ind_1', '2', 'Name in direct order', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_811_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_811_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '811', 'a', 'Meeting name or jurisdiction name as entry - element (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 830 file: www.loc.gov/marc/bibliographic/concise/bd830.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_830_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_830_ind_2', BTRIM($label$ - -Second - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '0', 'No nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_830_ind_2', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '830', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 046 file: www.loc.gov/marc/authority/concise/ad046.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_046_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_046_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_046_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_046_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '046', 'f', 'Birth date (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 082 file: www.loc.gov/marc/authority/concise/ad082.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_082_ind_1', BTRIM($label$ - -First - Type of edition - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_082_ind_1', '0', 'Full', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_082_ind_1', '1', 'Abridged', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_082_ind_1', '7', 'Other edition specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_082_ind_2', BTRIM($label$ - -Second - Source of call number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_082_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_082_ind_2', '0', 'Assigned by LC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_082_ind_2', '4', 'Assigned by agency other than LC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '082', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 083 file: www.loc.gov/marc/authority/concise/ad083.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_083_ind_1', BTRIM($label$ - -First - Type of edition - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_083_ind_1', '0', 'Full', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_083_ind_1', '1', 'Abridged', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_083_ind_1', '7', 'Other edition specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_083_ind_2', BTRIM($label$ - -Second - Source of classification number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_083_ind_2', '0', 'Assigned by LC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_083_ind_2', '4', 'Assigned by agency other than LC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '083', 'a', 'Classification number element-single number or - beginning number of span (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008s.html - - UPDATE config.record_attr_definition - SET description = 'Frequency' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Regularity' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 19 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 20 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of continuing resource' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 21 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of original item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 22 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 23 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Nature of entire work' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 24 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Nature of contents' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 25 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Government publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 28 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Conference publication' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 29 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 30 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Original alphabet or script of title' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 33 AND rec_type IN ('SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Entry convention' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 34 AND rec_type IN ('SER') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 18, '#', 'No determinable frequency', 'Used when the frequency is known to be - intentionally irregular. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'a', 'Annual', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'b', 'Bimonthly', 'Includes publications whose frequency is 6, - 7, or 8 numbers a year. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'c', 'Semiweekly', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'd', 'Daily', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'e', 'Biweekly', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'f', 'Semiannual', 'Includes publications whose frequency is 2 - numbers a year. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'g', 'Biennial', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'h', 'Triennial', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'i', 'Three times a week', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'j', 'Three times a month', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'k', 'Continuously updated', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'm', 'Monthly', 'Includes publications whose frequency is 9, - 10, 11, or 12 numbers a year. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'q', 'Quarterly', 'Includes publications whose frequency is 4 - numbers a year. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 's', 'Semimonthly', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 't', 'Three times a year', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'w', 'Weekly', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 19, 'n', 'Normalized irregular', 'Predictable irregularity pattern.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 19, 'r', 'Regular', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 19, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 19, 'x', 'Completely irregular', 'Used 1) when the frequency is known to be - intentionally irregular (008/18 is coded as - #); or 2) when the frequency in field 310 is - expressed as numbers per year. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 19, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, '#', 'None of the following', 'Also used for yearbooks and annual - reports. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'd', 'Updating database', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'g', 'Magazine', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'h', 'Blog', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'j', 'Journal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'l', 'Updating loose-leaf', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'm', 'Monographic series', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'n', 'Newspaper', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'p', 'Periodical', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'r', 'Repository', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 's', 'Newsletter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 't', 'Directory', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'w', 'Updating Web site', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '#', 'None of the following', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'a', 'Microfilm', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'b', 'Microfiche', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'c', 'Microopaque', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'd', 'Large print', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'e', 'Newspaper format', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'f', 'Braille', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 's', 'Electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '#', 'None of the following', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'a', 'Microfilm', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'b', 'Microfiche', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'c', 'Microopaque', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'd', 'Large print', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'f', 'Braille', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'r', 'Regular print reproduction', 'Eye-readable print, such as a photocopy.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 's', 'Electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '#', 'Not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'a', 'Abstracts/summaries', 'Abstracts or summaries of other - publications. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'b', 'Bibliographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'c', 'Catalogs', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'd', 'Dictionaries', 'Also includes glossaries or gazetteers.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'e', 'Encyclopedias', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'f', 'Handbooks', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'g', 'Legal articles', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'h', 'Biography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'i', 'Indexes', 'Index to bibliographical material other than - itself (e.g., an indexing journal). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'k', 'Discographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'l', 'Legislation', 'Full or partial texts of enactments of - legislative bodies or texts of rules and - regulations issued by executive or - administrative agencies. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'm', 'Theses', 'Thesis, dissertation, or work identified as - having been created to satisfy the - requirements for an academic certification or - degree. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'n', 'Surveys of literature in a subject area', 'Authored surveys that summarize what has been - published about a subject - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'o', 'Reviews', 'Critical reviews of published or performed - works (e.g., books, films, sound recordings, - theater, etc.). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'p', 'Programmed texts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'q', 'Filmographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'r', 'Directories', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 's', 'Statistics', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 't', 'Technical reports', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'u', 'Standards/specifications', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'v', 'Legal cases and case notes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'w', 'Law reports and digests', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'y', 'Yearbooks', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'z', 'Treaties', 'Treaties or accords negotiated between two or - more parties to settle a disagreement, - establish a relationship, grant rights, - etc. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '5', 'Calendars', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '6', 'Comics/graphic novels', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, '#', 'Not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'a', 'Abstracts/summaries', 'Abstracts or summaries of - other publications. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'b', 'Bibliographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'c', 'Catalogs', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'd', 'Dictionaries', 'Also used for a glossary or a gazetteer.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'e', 'Encyclopedias', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'f', 'Handbooks', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'g', 'Legal articles', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'h', 'Biography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'i', 'Indexes', 'Index to bibliographical material other than - itself (e.g., an indexing journal). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'k', 'Discographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'l', 'Legislation', 'Includes of full or partial texts of - enactments of legislative bodies, published - either in statute or in code form, or texts of - rules and regulations issued by executive or - administrative agencies. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'm', 'Theses', 'Thesis, dissertation, or work identified as - having been created to satisfy the - requirements for an academic certification or - degree. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'n', 'Surveys of literature in a subject area', 'Includes authored surveys that summarize what - has been published about a subject - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'o', 'Reviews', 'Includes critical reviews of published or - performed works (e.g., books, films, sound - recordings, theater, etc.). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'p', 'Programmed texts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'q', 'Filmographies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'r', 'Directories', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 's', 'Statistics', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 't', 'Technical reports', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'u', 'Standards/specifications', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'v', 'Legal cases and case notes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'w', 'Law reports and digests', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'y', 'Yearbooks', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, 'z', 'Treaties', 'Includes treaties or accords negotiated - between two or more parties to settle a - disagreement, establish a relationship, grant - rights, etc. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, '5', 'Calendars', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, '6', 'Comics/graphic novels', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 25, '|||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '#', 'Not a government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'a', 'Autonomous or semi-autonomous component', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'c', 'Multilocal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'f', 'Federal/national', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'i', 'International intergovernmental', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'l', 'Local', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'm', 'Multistate', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'o', 'Government publication-level undetermined', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 's', 'State, provincial, territorial, dependent, - etc.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'u', 'Unknown if item is government publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 28, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '0', 'Not a conference publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '1', 'Conference publication', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 29, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '#', 'No alphabet or script given/No key title', 'May relate to the title proper in field 245 - when no key title is present. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'a', 'Basic Roman', 'Includes no diacritics or special - characters. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'b', 'Extended Roman', 'Includes diacritics and special - characters. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'c', 'Cyrillic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'd', 'Japanese', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'e', 'Chinese', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'f', 'Arabic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'g', 'Greek', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'h', 'Hebrew', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'i', 'Thai', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'j', 'Devanagari', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'k', 'Korean', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'l', 'Tamil', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'z', 'Other', 'Also used when the title incorporates words - from more than one alphabet or script. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '0', 'Successive entry', 'New bibliographic record is created each time - 1) a title changes, or 2) a corporate body - used as main entry or uniform title qualifier, - changes. The earlier or later title or - author/title is recorded in a linking field - (field 780/785) on each record. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '1', 'Latest entry', 'Cataloged under its latest (most recent) - title or issuing body (pre-AACR cataloging - rules). All former titles and/or issuing - bodies are given in notes (fields 247, 547, - and 550). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '2', 'Integrated entry', 'Cataloged under its latest (most recent) - title and/or responsible person or corporate - body. Used for integrating resources and - electronic serials that do not retain their - earlier titles. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 34, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 046 file: www.loc.gov/marc/bibliographic/concise/bd046.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_046_ind_1', BTRIM($label$ - -First - Type of entity - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_046_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_046_ind_1', '1', 'Work', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_046_ind_1', '2', 'Expression', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_046_ind_1', '3', 'Manifestation', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_046_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_046_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '046', 'a', 'Type of date code (NR) -Codes -iInclusive dates of collectionkBulk of collectionmMultiple datesnUnknown datepDistribution/release/issue and production/recording session - datesqQuestionable daterReissue and original datessSingle known/probable datetPublication and copyright datesxIncorrect dates','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 334 file: www.loc.gov/marc/bibliographic/concise/bd334.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_334_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_334_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_334_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_334_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '334', 'a', 'Mode of issuance term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 353 file: www.loc.gov/marc/bibliographic/concise/bd353.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_353_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_353_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_353_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_353_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '353', 'a', 'Supplementary content term (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 852 file: www.loc.gov/marc/bibliographic/concise/bd852.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_852_ind_1', BTRIM($label$ - -First - Shelving scheme - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '0', 'Library of Congress classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '1', 'Dewey Decimal classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '2', 'National Library of Medicine classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '3', 'Superintendent of Documents classification', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '4', 'Shelving control number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '5', 'Title', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '6', 'Shelved separately', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '7', 'Source specified in subfield $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_1', '8', 'Other scheme', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_852_ind_2', BTRIM($label$ - -Second - Shelving order - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_2', '0', 'Not enumeration', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_2', '1', 'Primary enumeration', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_852_ind_2', '2', 'Alternative enumeration', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '852', 'a', 'Location (NR) -Institution or person holding the item or from which access is given. Contains a - MARC code of the holding institution or the name of the institution or person. -See: MARC Code List for Organizations.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 361 file: www.loc.gov/marc/authority/concise/ad361.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_361_ind_1', BTRIM($label$ - -First - Privacy - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_361_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_361_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_361_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_361_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_361_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '361', 'a', 'Name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 368 file: www.loc.gov/marc/authority/concise/ad368.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_368_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_368_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_368_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_368_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '368', 'a', 'Type of corporate body (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 857 file: www.loc.gov/marc/authority/concise/ad857.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_857_ind_1', BTRIM($label$ - -First - Access method - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_1', '1', 'FTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_1', '4', 'HTTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_1', '7', 'Method specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_857_ind_2', BTRIM($label$ - -Second - Relationship - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '0', 'Resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '1', 'Version of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '2', 'Related resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '3', 'Component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '4', 'Version of component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_857_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '857', 'b', 'Name of archiving agency (NR) -Agency responsible for the Web archive or digital archive repository.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008a.html - - UPDATE config.record_attr_definition - SET description = 'Date entered on file' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 0 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of date/Publication status' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 6 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Date 1' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 7 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Date 2' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 11 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Place of publication, production, or execution' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 15 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Language' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 35 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Modified record' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 38 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Cataloging source' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 39 AND rec_type IN ('COM', 'SCO', 'REC', 'MIX', 'MAP', 'VIS', 'BKS', 'SER') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 6, 'b', 'No dates given; B.C. date involved', 'Each character position in fields 008/07-10 and 008/11-14 contains a blank.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'c', 'Continuing resource currently published', '008/07-10 contain the beginning date of publication; 008/11-14 contain the - characters 9999. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'd', 'Continuing resource ceased publication', '008/07-10 contain the beginning date of publication; 008/11-14 contain the date - the item ceased to be published. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'e', 'Detailed date', '008/07-10 contain the year and 008/11-14 contain the month and day formatted - mmdd. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'i', 'Inclusive dates of collection', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'k', 'Range of years of bulk of collection', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'm', 'Multiple dates', '008/07-10 usually contain the initial (or beginning) date and 008/11-14 the - terminal (or ending) date. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'n', 'Dates unknown', 'Dates appropriate for 008/07-10 and 008/11-14 are unknown, (e.g., when no dates - are given in field 260). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'p', 'Date of distribution/release/issue and production/recording session when - different', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'q', 'Questionable date', 'Earliest possible date is given in 008/07-10; latest possible date in - 008/11-14. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'r', 'Reprint/reissue date and original date', '008/07-10 contain the date of reproduction or reissue; 008/11-14 contain the - date of the original, if known. 008/11-14 contain code u ("uuuu"), if - unknown. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 's', 'Single known date/probable date', '008/07-10 contain the date; 008/11-14 contain blanks (####).', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 't', 'Publication date and copyright date', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, 'u', 'Continuing resource status unknown', '008/07-10 contain a beginning date of publication; 008/11-14 contain the - characters uuuu since no ending date is known. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 6, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 7, '1-9', 'Date digit', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 7, '#', 'Date element is not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 7, 'u', 'Date element is totally or partially unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 7, '||||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 11, '1-9', 'Date digit', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 11, '#', 'Date element is not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 11, 'u', 'Date element is totally or partially unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 11, '||||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, '#', 'Not modified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 'd', 'Dashed-on information omitted', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 'o', 'Completely romanized/printed cards romanized', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 'r', 'Completely romanized/printed cards in script', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 's', 'Shortened', 'Some of the data was omitted because the data exceeded the maximum length - allowed by the system used to create or process it. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, 'x', 'Missing characters', 'Record contained characters that could not be converted to machine-readable - form (e.g., incidental nonroman characters on predominantly roman alphabet - records, mathematical symbols, etc.). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 38, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 39, '#', 'National bibliographic agency', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 39, 'c', 'Cooperative cataloging program', 'Creator of the cataloging data is a participant (other than a national - bibliographic agency) in a cooperative cataloging program. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 39, 'd', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 39, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 39, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 041 file: www.loc.gov/marc/bibliographic/concise/bd041.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_041_ind_1', BTRIM($label$ - -First - Translation indication - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_041_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_041_ind_1', '0', 'Item not a translation/does not include a - translation', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_041_ind_1', '1', 'Item is or includes a translation', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_041_ind_2', BTRIM($label$ - -Second - Source of code - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_041_ind_2', '#', 'MARC language code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_041_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '041', 'a', 'Language code of text/sound track or separate - title (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 361 file: www.loc.gov/marc/bibliographic/concise/bd361.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_361_ind_1', BTRIM($label$ - -First - Privacy - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_361_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_361_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_361_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_361_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_361_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '361', 'a', 'Name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 561 file: www.loc.gov/marc/bibliographic/concise/bd561.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_561_ind_1', BTRIM($label$ - -First - Privacy - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_561_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_561_ind_1', '0', 'Private', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_561_ind_1', '1', 'Not private', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_561_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_561_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '561', 'a', 'History (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 653 file: www.loc.gov/marc/bibliographic/concise/bd653.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_653_ind_1', BTRIM($label$ - -First - Level of index term - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_1', '0', 'No level specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_1', '1', 'Primary', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_1', '2', 'Secondary', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_653_ind_2', BTRIM($label$ - -Second - Type of term or name - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '0', 'Topical term', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '1', 'Personal name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '2', 'Corporate name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '3', 'Meeting name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '4', 'Chronological term', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '5', 'Geographic name', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_653_ind_2', '6', 'Genre/form term', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '653', 'a', 'Uncontrolled term (R) -Index term is from an uncontrolled subject heading system or thesaurus.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 658 file: www.loc.gov/marc/bibliographic/concise/bd658.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_658_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_658_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_658_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_658_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '658', 'a', 'Main curriculum objective (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 720 file: www.loc.gov/marc/bibliographic/concise/bd720.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_720_ind_1', BTRIM($label$ - -First - Type of name - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_720_ind_1', '#', 'Not specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_720_ind_1', '1', 'Personal', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_720_ind_1', '2', 'Other', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_720_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_720_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '720', 'a', 'Name (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 857 file: www.loc.gov/marc/bibliographic/concise/bd857.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_857_ind_1', BTRIM($label$ - -First - Access method - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_1', '1', 'FTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_1', '4', 'HTTP', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_1', '7', 'Method specified in subfield $2', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_857_ind_2', BTRIM($label$ - -Second - Relationship - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '0', 'Resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '1', 'Version of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '2', 'Related resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '3', 'Component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '4', 'Version of component part(s) of resource', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_857_ind_2', '8', 'No display constant generated', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '857', 'b', 'Name of archiving agency (NR) -Agency responsible for the Web archive or digital archive repository.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 270 file: www.loc.gov/marc/bibliographic/concise/bd270.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_270_ind_1', BTRIM($label$ - -First - Level - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_270_ind_1', '#', 'No level specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_270_ind_1', '1', 'Primary', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_270_ind_1', '2', 'Secondary', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_270_ind_2', BTRIM($label$ - -Second - Type of address - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_270_ind_2', '#', 'No type specified', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_270_ind_2', '0', 'Mailing', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_270_ind_2', '7', 'Type specified in subfield $i', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '270', 'a', 'Address (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 506 file: www.loc.gov/marc/bibliographic/concise/bd506.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_506_ind_1', BTRIM($label$ - -First - Restriction - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_506_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_506_ind_1', '0', 'No restrictions', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_506_ind_1', '1', 'Restrictions apply', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_506_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_506_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '506', 'a', 'Terms governing access (NR) -Legal, physical, or procedural restrictions imposed on individuals wishing to - see the described materials.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 540 file: www.loc.gov/marc/bibliographic/concise/bd540.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_540_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_540_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_540_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_540_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '540', 'a', 'Terms governing use and reproduction (NR) -Usually mean the text of a legal or official statement of restrictions.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 730 file: www.loc.gov/marc/bibliographic/concise/bd730.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_730_ind_1', BTRIM($label$ - -First - Nonfiling characters - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '0', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '1', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '2', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '3', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '4', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '5', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '6', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '7', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '8', 'Number of nonfiling characters', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_1', '9', 'Number of nonfiling characters', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_730_ind_2', BTRIM($label$ - -Second - Type of added entry - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_730_ind_2', '2', 'Analytical entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '730', 'a', 'Uniform title (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 758 file: www.loc.gov/marc/bibliographic/concise/bd758.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_758_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_758_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_758_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_758_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '758', 'a', 'Label (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 883 file: www.loc.gov/marc/authority/concise/ad883.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_883_ind_1', BTRIM($label$ - -First - Method of assignment - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_883_ind_1', '#', 'No information provided/not applicable', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_883_ind_1', '0', 'Fully machine-generated', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_883_ind_1', '1', 'Partially machine-generated', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_883_ind_1', '2', 'Not machine-generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_883_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_883_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '883', 'a', 'Creation process (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 310 file: www.loc.gov/marc/bibliographic/concise/bd310.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_310_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_310_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_310_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_310_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '310', 'a', 'Current publication frequency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 321 file: www.loc.gov/marc/bibliographic/concise/bd321.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_321_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_321_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_321_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_321_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '321', 'a', 'Former publication frequency (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 883 file: www.loc.gov/marc/bibliographic/concise/bd883.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_883_ind_1', BTRIM($label$ - -First - Method of assignment - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_883_ind_1', '#', 'No information provided/not applicable', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_883_ind_1', '0', 'Fully machine-generated', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_883_ind_1', '1', 'Partially machine-generated', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_883_ind_1', '2', 'Not machine-generated', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_883_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_883_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '883', 'a', 'Creation process (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 008 file: www.loc.gov/marc/bibliographic/concise/bd008m.html - - UPDATE config.record_attr_definition - SET description = 'Form of composition' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 18 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Format of music' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 20 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Music parts' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 21 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Target audience' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 22 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Form of item' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 23 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Accompanying matter' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 24 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Literary text for sound recordings' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 30 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 32 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Transposition and arrangement' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 33 AND rec_type IN ('SCO') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '008' AND start_pos = 34 AND rec_type IN ('SCO') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('008', 18, 'an', 'Anthems', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'bd', 'Ballads', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'bg', 'Bluegrass music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'bl', 'Blues', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'bt', 'Ballets', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ca', 'Chaconnes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cb', 'Chants, Other religions', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cc', 'Chant, Christian', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cg', 'Concerti grossi', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ch', 'Chorales', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cl', 'Chorale preludes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cn', 'Canons and rounds', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'co', 'Concertos', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cp', 'Chansons, polyphonic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cr', 'Carols', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cs', 'Chance compositions', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ct', 'Cantatas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cy', 'Country music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'cz', 'Canzonas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'df', 'Dance forms', 'Includes music for individual dances except for mazurkas, minuets, pavans, - polonaises, and waltzes, which have separate codes. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'dv', 'Divertimentos, serenades, cassations, divertissements, and notturni', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'fg', 'Fugues', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'fl', 'Flamenco', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'fm', 'Folk music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ft', 'Fantasias', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'gm', 'Gospel music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'hy', 'Hymns', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'jz', 'Jazz', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mc', 'Musical revues and comedies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'md', 'Madrigals', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mi', 'Minuets', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mo', 'Motets', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mp', 'Motion picture music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mr', 'Marches', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ms', 'Masses', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mu', 'Multiple forms', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'mz', 'Mazurkas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'nc', 'Nocturnes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'nn', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'op', 'Operas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'or', 'Oratorios', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ov', 'Overtures', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'pg', 'Program music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'pm', 'Passion music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'po', 'Polonaises', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'pp', 'Popular music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'pr', 'Preludes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ps', 'Passacaglias', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'pt', 'Part-songs', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'pv', 'Pavans', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'rc', 'Rock music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'rd', 'Rondos', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'rg', 'Ragtime music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ri', 'Ricercars', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'rp', 'Rhapsodies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'rq', 'Requiems', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'sd', 'Square dance music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'sg', 'Songs', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'sn', 'Sonatas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'sp', 'Symphonic poems', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'st', 'Studies and exercises', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'su', 'Suites', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'sy', 'Symphonies', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'tc', 'Toccatas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'tl', 'Teatro lirico', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'ts', 'Trio-sonatas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'uu', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'vi', 'Villancicos', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'vr', 'Variations', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'wz', 'Waltzes', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'za', 'Zarzuelas', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, 'zz', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 18, '||', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'a', 'Full score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'b', 'Miniature or study score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'c', 'Accompaniment reduced for keyboard', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'd', 'Voice score with accompaniment omitted', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'e', 'Condensed score or piano-conductor score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'g', 'Close score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'h', 'Chorus score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'i', 'Condensed score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'j', 'Performer-conductor part', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'k', 'Vocal score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'l', 'Score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'm', 'Multiple score formats', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'p', 'Piano score', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 20, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, '#', 'No parts in hand or not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'd', 'Instrumental and vocal parts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'e', 'Instrumental parts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'f', 'Vocal parts', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 21, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '#', 'Unknown or unspecified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'a', 'Preschool', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'b', 'Primary', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'c', 'Pre-adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'd', 'Adolescent', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'e', 'Adult', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'f', 'Specialized', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'g', 'General', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, 'j', 'Juvenile', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 22, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '#', 'None of the following', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'a', 'Microfilm', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'b', 'Microfiche', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'c', 'Microopaque', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'd', 'Large print', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'f', 'Braille', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'o', 'Online', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'q', 'Direct electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 'r', 'Regular print reproduction', 'Eye-readable print, such as a photocopy.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, 's', 'Electronic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 23, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '#', 'No accompanying matter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'a', 'Discography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'b', 'Bibliography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'c', 'Thematic index', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'd', 'Libretto or text', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'e', 'Biography of composer or author', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'f', 'Biography of performer or history of ensemble', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'g', 'Technical and/or historical information on instruments', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'h', 'Technical information on music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'i', 'Historical information', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'k', 'Ethnological information', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'r', 'Instructional materials', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 's', 'Music', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 24, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, '#', 'Item is a music sound recording', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'a', 'Autobiography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'b', 'Biography', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'c', 'Conference proceedings', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'd', 'Drama', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'e', 'Essays', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'f', 'Fiction', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'g', 'Reporting', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'h', 'History', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'i', 'Instruction', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'j', 'Language instruction', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'k', 'Comedy', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'l', 'Lectures, speeches', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'm', 'Memoirs', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'o', 'Folktales', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'p', 'Poetry', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'r', 'Rehearsals', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 's', 'Sounds', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 't', 'Interviews', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 30, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '#', 'Not arrangement or transposition or not specified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'a', 'Transposition', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'b', 'Arrangement', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'c', 'Both transposed and arranged', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('008', 33, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 028 file: www.loc.gov/marc/bibliographic/concise/bd028.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_028_ind_1', BTRIM($label$ - -First - Type of number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '0', 'Issue number - Number used to identify the issue designation, or serial identification, - assigned by a publisher to a specific sound recording, side of a sound - recording, or performance on a sound recording or to a group of sound - recordings issued as a set.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '1', 'Matrix number - Master from which the specific recording was pressed.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '2', 'Plate number - Assigned by a publisher to a specific music publication.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '3', 'Other music publisher number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '4', 'Video recording publisher number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '5', 'Other publisher number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_1', '6', 'Distributor number', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_028_ind_2', BTRIM($label$ - -Second - Note/added entry controller - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_2', '0', 'No note, no added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_2', '1', 'Note, added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_2', '2', 'Note, no added entry', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_028_ind_2', '3', 'No note, added entry', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '028', 'a', 'Publisher or distributor number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 037 file: www.loc.gov/marc/bibliographic/concise/bd037.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_037_ind_1', BTRIM($label$ - -First - Source of acquisition sequence - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_037_ind_1', '#', 'Not applicable/No information provided/Earliest', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_037_ind_1', '2', 'Intervening', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_037_ind_1', '3', 'Current/Latest', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_037_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_037_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '037', 'a', 'Stock number (NR) -Numbers such as distributor, publisher, or vendor numbers for resources - other than music, music-related, or audiovisual materials are also recorded in - this subfield.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: lea file: www.loc.gov/marc/bibliographic/concise/bdleader.html - - UPDATE config.record_attr_definition - SET description = 'Record length' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 0 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Record status' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 5 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of record' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 6 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Bibliographic level' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 7 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Type of control' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 8 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Character coding scheme' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 9 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Indicator count' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 10 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Subfield code count' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 11 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Base address of data' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 12 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Encoding level' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 17 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Descriptive cataloging form' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 18 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Multipart resource record level' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 19 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Length of the length-of-field portion' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 20 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Length of the starting-character-position portion' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 21 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Length of the implementation-defined portion' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 22 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = 'ldr' AND start_pos = 23 AND rec_type NOT IN ('AUT') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('ldr', 5, 'a', 'Increase in encoding level', 'Encoding level (Leader/17) of the record has been changed to a higher encoding - level. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 5, 'c', 'Corrected or revised', 'Addition/change other than in the Encoding level code has been made to the - record. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 5, 'd', 'Deleted', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 5, 'n', 'New', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 5, 'p', 'Increase in encoding level from prepublication', 'Prepublication record has had a change in cataloging level resulting from the - availability of the published item. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'a', 'Language material', 'Includes microforms and electronic resources that are basically textual in - nature, whether they are reproductions from print or originally produced. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'c', 'Notated music', 'Used for printed, microform, or electronic notated music.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'd', 'Manuscript notated music', 'Used for manuscript notated music or a microform of manuscript music.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'e', 'Cartographic material', 'Includes maps, atlases, globes, digital maps, and other cartographic items.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'f', 'Manuscript cartographic material', 'Used for manuscript cartographic material or a microform of manuscript - cartographic material. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'g', 'Projected medium', 'Used for motion pictures, videorecordings (including digital video), - filmstrips, slide, transparencies or material specifically designed for - projection. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'i', 'Nonmusical sound recording', 'Used for a recording of nonmusical sounds (e.g., speech).', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'j', 'Musical sound recording', 'Used for a musical sound recording (e.g., phonodiscs, compact discs, or - cassette tapes. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'k', 'Two-dimensional nonprojectable graphic', 'Used for two-dimensional nonprojectable graphics such as, activity cards, - charts, collages, computer graphics, digital pictures, drawings, duplication - masters, flash cards, paintings, photo CDs, photomechanical reproductions, - photonegatives, photoprints, pictures, postcards, posters, prints, spirit - masters, study prints, technical drawings, transparency masters, and - reproductions of any of these. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'm', 'Computer file', 'Used for the following classes of electronic resources: computer software - (including programs, games, fonts), numeric data, computer-oriented multimedia, - online systems or services. For these classes of materials, if there is a - significant aspect that causes it to fall into another Leader/06 category, the - code for that significant aspect is used instead of code m (e.g., vector data - that is cartographic is not coded as numeric but as cartographic). Other - classes of electronic resources are coded for their most significant aspect - (e.g. language material, graphic, cartographic material, sound, music, moving - image). In case of doubt or if the most significant aspect cannot be - determined, consider the item a computer file. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'o', 'Kit', 'Used for a mixture of various components issued as a unit and intended - primarily for instructional purposes where no one item is the predominant - component of the kit. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'p', 'Mixed materials', 'Used when there are significant materials in two or more forms that are usually - related by virtue of their having been accumulated by or about a person or - body. Includes archival fonds and manuscript collections of mixed forms of - materials, such as text, photographs, and sound recordings. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 'r', 'Three-dimensional artifact or naturally occurring object', 'Includes man-made objects such as models, dioramas, games, puzzles, - simulations, sculptures and other three-dimensional art works, exhibits, - machines, clothing, toys, and stitchery. Also includes naturally occurring - objects such as, microscope specimens (or representations of them) and other - specimens mounted for viewing. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 6, 't', 'Manuscript language material', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 'a', 'Monographic component part', 'Monographic bibliographic unit that is physically attached to or contained in - another unit such that the retrieval of the component part is dependent on the - identification and location of the host item or container. Contains fields that - describe the component part and data that identify the host, field 773 (Host - Item Entry). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 'b', 'Serial component part', 'Serial bibliographic unit that is physically attached to or contained in - another unit such that the retrieval of the component part is dependent on the - identification and location of the host item or container. Contains fields that - describe the component part and data that identify the host, field 773 (Host - Item Entry). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 'c', 'Collection', 'Made-up multipart group of items that were not originally published, - distributed, or produced together. The record describes units defined by common - provenance or administrative convenience for which the record is intended as - the most comprehensive in the system. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 'd', 'Subunit', 'Part of collection, especially an archival unit described collectively - elsewhere in the system. Contains fields that describe the subunit and data - that identify the host item. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 'i', 'Integrating resource', 'Bibliographic resource that is added to or changed by means of updates that do - not remain discrete and are integrated into the whole. Examples include - updating loose-leafs and updating Web sites. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 'm', 'Monograph/Item', 'Item either complete in one part (e.g., a single monograph, a single map, a - single manuscript, etc.) or intended to be completed, in a finite number of - separate parts (e.g., a multivolume monograph, a sound recording with multiple - tracks, etc.). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 7, 's', 'Serial', 'Bibliographic item issued in successive parts bearing numerical or - chronological designations and intended to be continued indefinitely. Includes - periodicals; newspapers; annuals (reports, yearbooks, etc.); the journals, - memoirs, proceedings, transactions, etc., of societies; and numbered - monographic series, etc. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 8, 'a', 'Archival', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 9, '#', 'MARC-8', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 9, 'a', 'UCS/Unicode', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '#', 'Full level', 'Most complete MARC record created from information derived from an inspection - of the physical item. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '1', 'Full level, material not examined', 'Next most complete MARC record after the full level created from information - derived from an extant description of the item (e.g., a printed catalog card or - a description in an institutional guide) without reinspection of the physical - item. Used primarily in the retrospective conversion of records when all of the - information on the extant description is transcribed. Certain control field - coding and other data (e.g., field 043 (Geographic Area Code)) are based only - on explicit information in the description. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '2', 'Less-than-full level, material not examined', 'Less-than-full level record (i.e., a record that falls between minimal level - and full) created from an extant description of the material (e.g., a printed - catalog card) without reinspection of the physical item. Used primarily in the - retrospective conversion of records when all of the descriptive access points - but only a specified subset of other data elements are transcribed. - Authoritative headings may not be current. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '3', 'Abbreviated level', 'Brief record that does not meet minimal level cataloging specifications. - Headings in the records may reflect established forms to the extent that such - forms were available at the time the record was created. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '4', 'Core level', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '5', 'Partial (preliminary) level', 'Preliminary cataloging level record that is not considered final by the - creating agency (e.g., the headings may not reflect established forms; the - record may not meet national-level cataloging specifications). - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '7', 'Minimal level', 'Record that meets the U.S. National Level Bibliographic Record minimal level - cataloging specifications and is considered final by the creating agency. - Headings have been checked against an authority file and reflect established - forms to the extent that such forms were available at the time the minimal - level record was created. The U.S. requirements for minimal-level records can - be found in National Level and Minimal - Level Record Requirements', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, '8', 'Prepublication level', 'Prepublication level record. Includes records created in cataloging in - publication programs. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, 'u', 'Unknown', 'Used by an agency receiving or sending data with a local code in Leader/17 - cannot adequately determine the appropriate encoding level of the record. Code - u thus replaces the local code. Not used in newly input or updated records. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 17, 'z', 'Not applicable', 'Concept of encoding level does not apply to the record.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 18, '#', 'Non-ISBD', 'Descriptive portion of the record does not follow International Standard - Bibliographic Description (ISBD) cataloging and punctuation - provisions. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 18, 'a', 'AACR 2', 'Descriptive portion of the record is formulated according to the description and - punctuation provisions as incorporated into the Anglo-American Cataloging Rules, - 2nd Edition (AACR 2) and its manuals. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 18, 'c', 'ISBD punctuation omitted', 'Descriptive portion of the record contains the punctuation provisions of ISBD, - except ISBD punctuation is not present at the end of a subfield. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 18, 'i', 'ISBD punctuation included', 'Descriptive portion of the record contains the punctuation provisions of ISBD.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 18, 'n', 'Non-ISBD punctuation omitted', 'Descriptive portion of the record does not follow International Standard Bibliographic - Description (ISBD) cataloging and punctuation provisions, and punctuation is not - present at the end of a subfield. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 18, 'u', 'Unknown', 'Institution receiving or sending data in Leader/18 cannot adequately determine - the appropriate descriptive cataloging form used in the record. May be used in - records converted from another metadata format. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 19, '#', 'Not specified or not applicable', 'The distinction between record levels is not specified or not applicable for - the type of resource. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 19, 'a', 'Set', 'Record is for a set consisting of multiple items.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 19, 'b', 'Part with independent title', 'The record is for a resource which is part of a set and has a title that allows it - to be independent of the set record. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('ldr', 19, 'c', 'Part with dependent title', 'The record is for a resource which is part of a set but has a title that makes it - dependent on the set record to understand its context. - ', 'biblio'); --- category: authority tag: 055 file: www.loc.gov/marc/authority/concise/ad055.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_055_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_055_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_055_ind_2', BTRIM($label$ - -Second - Source of call number - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_055_ind_2', '0', 'Assigned by LAC', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_055_ind_2', '4', 'Assigned by agency other than LAC', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '055', 'a', 'Classification number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 251 file: www.loc.gov/marc/bibliographic/concise/bd251.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_251_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_251_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_251_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_251_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '251', 'a', 'Version (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 341 file: www.loc.gov/marc/bibliographic/concise/bd341.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_341_ind_1', BTRIM($label$ - -First - Application - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_341_ind_1', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_341_ind_1', '0', 'Adaptive features to access primary content', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_341_ind_1', '1', 'Adaptive features to access secondary content', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_341_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_341_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '341', 'a', 'Content access mode (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 688 file: www.loc.gov/marc/bibliographic/concise/bd688.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_688_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_688_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_688_ind_2', BTRIM($label$ - -Second - Source of name, title, or term - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_688_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_688_ind_2', '7', 'Source specified in subfield $2', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '688', 'a', 'Name, title, or term (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007.html --- category: biblio tag: 007 file: www.loc.gov/marc/bibliographic/concise/bd007s.html - - UPDATE config.record_attr_definition - SET description = 'Category of material' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 0 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Specific material designation' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 1 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Undefined' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 2 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Speed' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 3 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Configuration of playback channels' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 4 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Groove width/groove pitch' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 5 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Dimensions' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 6 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Tape width' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 7 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Tape Configuration' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 8 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Kind of disc, cylinder or tape' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 9 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Kind of material' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 10 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Kind of cutting' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 11 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Special playback characteristics' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 12 AND rec_type NOT IN ('AUT') LIMIT 1); - - - UPDATE config.record_attr_definition - SET description = 'Original capture and storage technique' - WHERE fixed_field = (SELECT fixed_field FROM config.marc21_ff_pos_map WHERE tag = '007' AND start_pos = 13 AND rec_type NOT IN ('AUT') LIMIT 1); - -SELECT evergreen.insert_update_coded_value_map('007', 0, 's', 'Sound recording', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'b', 'Belt', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'd', 'Sound disc', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'e', 'Cylinder', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'g', 'Sound cartridge', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'i', 'Sound-track film', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'q', 'Roll', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'r', 'Remote', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 's', 'Sound cassette', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 't', 'Sound-tape reel', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'u', 'Unspecified', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'w', 'Wire recording', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 1, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'a', '16 rpm (discs)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'b', '33 1/3 rpm (discs)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'c', '45 rpm (discs)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'd', '78 rpm (discs)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'e', '8 rpm (discs)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'f', '1.4 m. per second (discs)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'h', '120 rpm (cylinders)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'i', '160 rpm (cylinders)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'k', '15/16 ips (tapes)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'l', '1 7/8 ips (tapes)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'm', '3 3/4 ips (tapes)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'o', '7 1/2 ips (tapes)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'p', '15 ips (tapes)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'r', '30 ips (tape)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 3, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'm', 'Monaural', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'q', 'Quadraphonic, multichannel, or surround', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 's', 'Stereophonic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 4, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'm', 'Microgroove/fine', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 's', 'Coarse/standard', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 5, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'a', '3 in. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'b', '5 in. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'c', '7 in. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'd', '10 in. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'e', '12 in. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'f', '16 in. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'g', '4 3/4 in. or 12 cm. diameter', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'j', '3 7/8 x 2 1/2 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'o', '5 1/4 x 3 7/8 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 's', '2 3/4 x 4 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 6, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'l', '1/8 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'm', '1/4 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'o', '1/2 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'p', '1 in.', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 7, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'a', 'Full (1) track', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'b', 'Half (2) track', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'c', 'Quarter (4) track', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'd', 'Eight track', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'e', 'Twelve track', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'f', 'Sixteen track', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 8, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'a', 'Master tape', 'Final tape production master that is used to make a disc master or a tape - duplication master. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'b', 'Tape duplication master', 'Sound tape produced from the master tape.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'd', 'Disc master (negative)', 'Negative disc master that is used for the preparation of the mother from which - more serviceable and longer lasting metal stampers can be made. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'i', 'Instantaneous (recorded on the spot)', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'm', 'Mass-produced', 'Includes discs or tapes issued as limited pressing or limited - issue for private distribution. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'r', 'Mother (positive)', 'Exact copy of the original disc recording pressed from the disc master. From - the metal mother a negative metal stamper is made to press - discs for distribution. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 's', 'Stamper (negative)', 'Negative metal part, produced from the mother in an electroplating - procedure, from which 500 to 750 discs may be pressed. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 't', 'Test pressing', 'Either one finished disc or one of a very limited pressing is made, designed to - be examined aurally before a decision is made to proceed with a pressing. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'u', 'Unknown', 'Type of disc, cylinder, or tape is not known.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 9, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'a', 'Lacquer coating', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'b', 'Cellulose nitrate', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'c', 'Acetate tape with ferrous oxide', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'g', 'Glass with lacquer', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'i', 'Aluminum with lacquer', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'l', 'Metal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'm', 'Plastic with metal', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'p', 'Plastic', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'r', 'Paper with lacquer or ferrous oxide', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 's', 'Shellac', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'w', 'Wax', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 10, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'h', 'Hill-and-dale cutting', 'Vertical cutting, with no lateral information intended for reproduction.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'l', 'Lateral or combined cutting', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'n', 'Not applicable', 'Compact audio discs are coded n as they are pitted rather than cut.', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 11, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'a', 'NAB standard', 'National Association of Broadcasters (NAB) standard was used for the - transcription of the recording and NAB playback equalization is required. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'b', 'CCIR standard', 'Comité consultatif de la radiodiffusion (CCIR) standard was used for the - transcription of the recording and CCIR playback equalization is required. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'c', 'Dolby-B encoded', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'd', 'dbx encoded', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'e', 'Digital recording', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'f', 'Dolby-A encoded', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'g', 'Dolby-C encoded', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'h', 'CX encoded', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'n', 'Not applicable', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'u', 'Unknown', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 12, '|', 'No attempt to code', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'a', 'Acoustical capture, analog direct storage', 'Recorded sound originally captured using an acoustical horn and - diaphragm and stored directly on a surface such as a disc or - cylinder. Most acoustical recordings date from the era beginning - in 1877, when the first practical commercial recording machines - were developed, until the mid-to-late 1920s, a transitional period - marked by the release of the earliest electrical recordings in 1925. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'b', 'Electrical capture, analog direct storage', 'Recorded sound originally captured using microphones and other electrical - equipment and stored directly on the surface of a disc. All recordings - that were made with microphones and other electrical equipment used direct - storage beginning with the earliest electrical recordings in 1925 through - the late 1940s. More recent commercial recordings marked "direct to disc" - or some equivalent phrase also used this technique. Also known as - electromechanical recording. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'd', 'Electrical capture, digital storage', 'Recorded sound originally captured electrically and stored using digital - techniques, which became available in the 1980s. Such recordings may be - identified as "digitally recorded" or by use of a similar phrase on the - label or package. However, designations such as "digital remastering" or - "digital mixing" are post-capture and storage processes and are not meant - to suggest that the original capture or storage techniques were digital. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'e', 'Electrical capture, analog electrical storage', 'Sound recordings which were captured using electrical techniques and - stored as modulations and pulses on a magnetic surface. Most recordings - made from the late 1940s until the transitional period from the early - 1980s through the early 1990s are analog electrical recordings. - ', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'u', 'Unknown capture and storage', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, 'z', 'Other', '', 'biblio'); -SELECT evergreen.insert_update_coded_value_map('007', 13, '|', 'No attempt to code', '', 'biblio'); --- category: biblio tag: 034 file: www.loc.gov/marc/bibliographic/concise/bd034.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_034_ind_1', BTRIM($label$ - -First - Type of scale - - Specifies the type of scale information given. - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_034_ind_1', '0', 'Scale indeterminable/No scale recorded - Used when no representative fraction is given in field 255 - or no field 255 is present in the record.', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_034_ind_1', '1', 'Single scale', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_034_ind_1', '3', 'Range of scales', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_034_ind_2', BTRIM($label$ - -Second - Type of ring - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_034_ind_2', '#', 'Not applicable', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_034_ind_2', '0', 'Outer ring', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_034_ind_2', '1', 'Exclusion ring', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '034', 'a', 'Category of scale (NR) -One-character alphabetic code indicating the type of scale of the item. -Used even when a specific scale is not recorded (first indicator position contains - value 0). For non-cartographic materials (i.e. images, graphic materials, - textual materials, etc.) subfield $a is not used. The codes used in - subfield $a are: - -a - Linear scale -b - Angular scale -z - Other type of scale','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 344 file: www.loc.gov/marc/bibliographic/concise/bd344.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_344_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_344_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_344_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_344_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '344', 'a', 'Type of recording (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 260 file: www.loc.gov/marc/bibliographic/concise/bd260.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_260_ind_1', BTRIM($label$ - -First - Sequence of publishing statements - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_260_ind_1', '#', 'Not applicable/No information provided/Earliest available publisher', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_260_ind_1', '2', 'Intervening publisher', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_260_ind_1', '3', 'Current/latest publisher', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_260_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_260_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '260', 'a', 'Place of publication, distribution, etc. (R) -May contain the abbreviation [S.l.] when the place is unknown.','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: authority tag: 020 file: www.loc.gov/marc/authority/concise/ad020.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_020_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_020_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_authority_020_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_authority_020_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('authority', 1, '020', 'a', 'International Standard Book Number (NR) -Valid ISBN. ISBN and the - embedded hyphens may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 015 file: www.loc.gov/marc/bibliographic/concise/bd015.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_015_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_015_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_015_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_015_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '015', 'a', 'National bibliography number (R)','t','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 020 file: www.loc.gov/marc/bibliographic/concise/bd020.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_020_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_020_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_020_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_020_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '020', 'a', 'International Standard Book Number (NR) -Valid ISBN. ISBN and the - embedded hyphens may be generated for display.','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 024 file: www.loc.gov/marc/bibliographic/concise/bd024.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_024_ind_1', BTRIM($label$ - -First - Type of standard number or code - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '0', 'International Standard Recording Code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '1', 'Universal Product Code', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '2', 'International Standard Music Number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '3', 'International Article Number', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '4', 'Serial Item and Contribution Identifier', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '7', 'Source specified in subfield $2', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_1', '8', 'Unspecified type of standard number or code', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_024_ind_2', BTRIM($label$ - -Second - Difference indicator - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_2', '#', 'No information provided', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_2', '0', 'No difference', ''); -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_024_ind_2', '1', 'Difference', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '024', 'a', 'Standard number or code (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - --- category: biblio tag: 027 file: www.loc.gov/marc/bibliographic/concise/bd027.html -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_027_ind_1', BTRIM($label$ - -First - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_027_ind_1', '#', 'Undefined', ''); -INSERT INTO config.record_attr_definition (name, label, description) VALUES ('marc21_biblio_027_ind_2', BTRIM($label$ - -Second - Undefined - -$label$), BTRIM($desc$ - - - -$desc$)) ON CONFLICT (name) DO UPDATE SET label = EXCLUDED.label, description = EXCLUDED.description; - - -SELECT evergreen.simple_insert_update_coded_value_map('marc21_biblio_027_ind_2', '#', 'Undefined', ''); -INSERT INTO config.marc_subfield (marc_record_type, marc_format, tag, code, description, repeatable, hidden, mandatory) - VALUES ('biblio', 1, '027', 'a', 'Standard technical report number (NR)','f','f','f') - ON CONFLICT (marc_record_type, marc_format, tag, code) WHERE owner IS NULL - DO UPDATE SET description = EXCLUDED.description, repeatable = EXCLUDED.repeatable; - - - - DO $$ - DECLARE - rec_cat config.marc_record_type; - rec_tag TEXT; - BEGIN - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '014'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '016'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '020'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '022'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '023'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '024'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '031'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '034'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '035'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '040'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '042'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '043'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '045'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '046'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '050'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '052'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '053'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '055'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '060'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '065'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '066'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '070'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '072'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '073'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '075'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '080'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '082'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '083'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '086'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '087'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '09x'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '100'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '110'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '111'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '130'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '147'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '148'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '150'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '151'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '155'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '162'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '180'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '181'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '182'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '185'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '260'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '335'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '336'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '348'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '360'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '361'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '368'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '370'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '371'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '372'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '373'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '374'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '375'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '376'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '377'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '378'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '380'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '381'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '382'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '383'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '384'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '385'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '386'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '387'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '388'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '400'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '410'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '411'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '430'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '447'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '448'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '450'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '451'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '455'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '462'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '480'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '481'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '482'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '485'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '500'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '510'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '511'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '530'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '547'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '548'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '550'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '551'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '555'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '562'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '580'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '581'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '582'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '585'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '640'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '641'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '642'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '643'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '644'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '645'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '646'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '663'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '664'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '665'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '666'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '667'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '670'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '672'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '673'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '675'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '677'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '678'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '680'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '681'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '682'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '688'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '700'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '710'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '711'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '730'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '747'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '748'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '750'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '751'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '755'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '762'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '780'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '781'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '782'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '785'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '788'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '856'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '857'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '880'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '883'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '884'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'authority'::config.marc_record_type; - rec_tag := '885'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '013'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '015'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '016'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '017'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '018'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '020'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '022'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '023'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '024'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '025'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '026'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '027'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '028'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '030'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '031'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '032'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '033'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '034'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '035'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '036'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '037'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '038'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '040'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '041'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '042'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '043'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '044'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '045'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '046'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '047'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '048'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '050'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '051'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '052'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '055'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '060'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '061'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '066'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '070'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '071'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '072'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '074'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '080'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '082'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '083'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '084'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '085'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '086'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '088'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '09x'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '100'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '110'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '111'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '130'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '210'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '222'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '240'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '242'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '243'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '245'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '246'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '247'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '250'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '251'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '254'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '255'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '256'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '257'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '258'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '260'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '263'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '264'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '270'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '300'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '306'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '307'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '310'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '321'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '334'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '335'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '336'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '337'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '338'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '340'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '341'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '342'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '343'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '344'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '345'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '346'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '347'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '348'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '351'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '352'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '353'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '355'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '357'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '361'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '362'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '363'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '365'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '366'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '370'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '377'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '380'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '381'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '382'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '383'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '384'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '385'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '386'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '387'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '388'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '490'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '500'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '501'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '502'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '504'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '505'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '506'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '507'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '508'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '510'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '511'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '513'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '514'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '515'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '516'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '518'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '520'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '521'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '522'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '524'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '525'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '526'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '530'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '532'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '533'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '534'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '535'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '536'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '538'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '540'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '541'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '542'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '544'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '545'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '546'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '547'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '550'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '552'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '555'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '556'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '561'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '562'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '563'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '565'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '567'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '580'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '581'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '583'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '584'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '585'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '586'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '588'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '59x'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '600'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '610'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '611'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '630'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '647'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '648'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '650'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '651'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '653'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '654'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '655'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '656'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '657'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '658'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '662'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '688'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '69x'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '700'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '710'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '711'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '720'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '730'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '740'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '751'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '752'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '753'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '754'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '758'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '760'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '762'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '765'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '767'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '770'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '772'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '773'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '774'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '775'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '776'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '777'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '780'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '785'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '786'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '787'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '788'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '800'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '810'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '811'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '830'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '850'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '852'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '856'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '857'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '880'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '881'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '882'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '883'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '884'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '885'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '886'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - - rec_cat := 'biblio'::config.marc_record_type; - rec_tag := '887'; - IF NOT EXISTS ( - SELECT 1 - FROM config.marc_field - WHERE marc_record_type = rec_cat AND tag = rec_tag - ) THEN - RAISE INFO 'Missing combination: record_category=%, tag=%', rec_cat, rec_tag; - END IF; - - END $$; - +-- This upgrade script is now disabled +-- See LP2073561 +-- SELECT evergreen.upgrade_deps_block_check('1416', :eg_version); SELECT evergreen.upgrade_deps_block_check('1417', :eg_version); diff --git a/docs/RELEASE_NOTES_NEXT/Administration/fix_coded_value_map.adoc b/docs/RELEASE_NOTES_NEXT/Administration/fix_coded_value_map.adoc new file mode 100644 index 0000000000..18658f8844 --- /dev/null +++ b/docs/RELEASE_NOTES_NEXT/Administration/fix_coded_value_map.adoc @@ -0,0 +1,56 @@ +== IMPORTANT: FIX DB Table config.coded_value_map == + +If your Evergreen database pre-dates version 3.13 and you have executed the DB upgrade (1416) which was included in the Evergreen upgrade files: + +* Open-ILS/src/sql/Pg/version-upgrade/3.12.3-3.13.0-upgrade-db.sql +* Open-ILS/src/sql/Pg/version-upgrade/1416.data.updated_marc_tag_tables.sql + +As described in https://bugs.launchpad.net/evergreen/+bug/2073561[LP2073561] + +You have two options: + +. Use the provided fix SQL script to reset the tables to stock +. Use a backup database that you may have pre-3.13 upgrade, and restore these two tables: +.. config.coded_value_map +.. config.composite_attr_entry_definition ++ +NOTE: You might prefer option 2 if you have customized the coded_value_map for new/different OPAC Icon/Search Formats. + +=== Option 1: Reset the tables to stock + +You will need to manually run the provided SQL file: + +IMPORTANT: Open-ILS/src/sql/Pg/LP2073561.fix.coded.value.map-post_3.13_upgrade.sql + +Example: + +[source,bash] +---- +psql evergreen < Open-ILS/src/sql/Pg/LP2073561.fix.coded.value.map-post_3.13_upgrade.sql +---- + +=== Option 2: Restore from backup + +. From the old copy of your database, pre-dating an upgrade to 3.13 ++ +[source,bash] +---- +pg_dump evergreen --data-only --schema config \ +--table config.coded_value_map \ +--table config.composite_attr_entry_definition \ +> ccvm_restore.sql +---- ++ +. Copy ccvm_restore.sql to an accessible location on your production database ++ +[source,bash] +---- +pgsql evergreen -c "truncate config.coded_value_map CASCADE;" +pgsql evergreen < ccvm_restore.sql +---- + +IMPORTANT: We highly recommend testing these steps on a non-production database! + + +NOTE: If your Evergreen database was started on version 3.13 and above, then you can safely ignore these instructions. + ----------------------------------------------------------------------- Summary of changes: Open-ILS/src/sql/Pg/961.data.marc21-tag-tables.sql | 29907 ------------------ ...73561.fix.coded.value.map-post_3.13_upgrade.sql | 6286 ++++ .../upgrade/1416.data.updated_marc_tag_tables.sql | 29907 +----------------- .../version-upgrade/3.12.3-3.13.0-upgrade-db.sql | 29911 +------------------ .../Administration/fix_coded_value_map.adoc | 61 + 5 files changed, 6353 insertions(+), 89719 deletions(-) delete mode 100644 Open-ILS/src/sql/Pg/961.data.marc21-tag-tables.sql create mode 100644 Open-ILS/src/sql/Pg/LP2073561.fix.coded.value.map-post_3.13_upgrade.sql create mode 100644 docs/RELEASE_NOTES_NEXT/Administration/fix_coded_value_map.adoc hooks/post-receive -- Evergreen ILS