Lines 90-95
insert into `marc_subfield_structure`(`tagfield`,`tagsubfield`,`liblibrarian`,`
Link Here
|
90 |
-- Current primary biblioitems Field/Subfields (942) |
90 |
-- Current primary biblioitems Field/Subfields (942) |
91 |
|
91 |
|
92 |
|
92 |
|
|
|
93 |
INSERT INTO authorised_value_categories( category_name ) VALUES |
94 |
('unimarc_146a'), |
95 |
('unimarc_181c'), |
96 |
('unimarc_182a'), |
97 |
('unimarc_182c'), |
98 |
('unimarc_325h'); |
99 |
|
100 |
INSERT INTO `authorised_values` (`category`, `authorised_value`, `lib`, `lib_opac`, `imageurl`) VALUES |
101 |
('unimarc_146a', 'a', 'vocal a cappella music', NULL, ''), |
102 |
('unimarc_146a', 'b', 'instrumental music', NULL, ''), |
103 |
('unimarc_146a', 'c', 'vocal and instrumental music', NULL, ''), |
104 |
('unimarc_146a', 'd', 'electroacoustic music', NULL, ''), |
105 |
('unimarc_146a', 'e', 'mixed media music (electroacoustic and other media)', NULL, ''), |
106 |
('unimarc_146a', 'u', 'undefined, variable', NULL, ''), |
107 |
('unimarc_146a', 'z', 'other', NULL, ''), |
108 |
('unimarc_181c', 'crt', 'cartographic tactile image', NULL, ''), |
109 |
('unimarc_181c', 'cod', 'computer dataset', NULL, ''), |
110 |
('unimarc_181c', 'cop', 'computer program', NULL, ''), |
111 |
('unimarc_181c', 'crd', 'cartographic dataset', NULL, ''), |
112 |
('unimarc_181c', 'crf', 'cartographic three-dimensional form', NULL, ''), |
113 |
('unimarc_181c', 'cri', 'cartographic image', NULL, ''), |
114 |
('unimarc_181c', 'crm', 'cartographic moving image', NULL, ''), |
115 |
('unimarc_181c', 'crn', 'cartographic tactile three-dimensional form', NULL, ''), |
116 |
('unimarc_181c', 'ntm', 'notated music', NULL, ''), |
117 |
('unimarc_181c', 'ntv', 'notated movement', NULL, ''), |
118 |
('unimarc_181c', 'prm', 'performed music', NULL, ''), |
119 |
('unimarc_181c', 'snd', 'sounds', NULL, ''), |
120 |
('unimarc_181c', 'spw', 'spoken word', NULL, ''), |
121 |
('unimarc_181c', 'sti', 'still image', NULL, ''), |
122 |
('unimarc_181c', 'tcf', 'tactile three-dimensional form', NULL, ''), |
123 |
('unimarc_181c', 'tci', 'tactile image', NULL, ''), |
124 |
('unimarc_181c', 'tcm', 'tactile notated music', NULL, ''), |
125 |
('unimarc_181c', 'tcn', 'tactile notated movement', NULL, ''), |
126 |
('unimarc_181c', 'tct', 'tactile text', NULL, ''), |
127 |
('unimarc_181c', 'tdf', 'three-dimensional form', NULL, ''), |
128 |
('unimarc_181c', 'tdi', 'two-dimensional moving image', NULL, ''), |
129 |
('unimarc_181c', 'tdm', 'three-dimensional moving image', NULL, ''), |
130 |
('unimarc_181c', 'txt', 'text', NULL, ''), |
131 |
('unimarc_181c', 'xxx', 'other', NULL, ''), |
132 |
('unimarc_182a', 'a', 'audio', NULL, ''), |
133 |
('unimarc_182a', 'b', 'electronic', NULL, ''), |
134 |
('unimarc_182a', 'c', 'microform', NULL, ''), |
135 |
('unimarc_182a', 'd', 'microscopic', NULL, ''), |
136 |
('unimarc_182a', 'e', 'projected', NULL, ''), |
137 |
('unimarc_182a', 'f', 'stereographic', NULL, ''), |
138 |
('unimarc_182a', 'g', 'video', NULL, ''), |
139 |
('unimarc_182a', 'm', 'multiple media', NULL, ''), |
140 |
('unimarc_182a', 'n', 'unmediated', NULL, ''), |
141 |
('unimarc_182a', 'z', 'other media', NULL, ''), |
142 |
('unimarc_182c', 's', 'audio', NULL, ''), |
143 |
('unimarc_182c', 'c', 'computer', NULL, ''), |
144 |
('unimarc_182c', 'h', 'microform', NULL, ''), |
145 |
('unimarc_182c', 'p', 'microscopic', NULL, ''), |
146 |
('unimarc_182c', 'g', 'projected', NULL, ''), |
147 |
('unimarc_182c', 'e', 'stereographic', NULL, ''), |
148 |
('unimarc_182c', 'n', 'unmediated', NULL, ''), |
149 |
('unimarc_182c', 'v', 'video', NULL, ''), |
150 |
('unimarc_182c', 'x', 'other', NULL, ''), |
151 |
('unimarc_182c', 'z', 'unspecified', NULL, ''), |
152 |
('unimarc_325h', '0', 'Reproduction is not complete', NULL, ''), |
153 |
('unimarc_325h', '1', 'Reproduction is complete', NULL, ''), |
154 |
('unimarc_325h', '#', 'undetermined', NULL, ''); |
155 |
|
93 |
INSERT INTO `marc_tag_structure` (`tagfield`, `liblibrarian`, `libopac`, `repeatable`, `mandatory`, `authorised_value`, `frameworkcode`) VALUES |
156 |
INSERT INTO `marc_tag_structure` (`tagfield`, `liblibrarian`, `libopac`, `repeatable`, `mandatory`, `authorised_value`, `frameworkcode`) VALUES |
94 |
('942', 'ADDED ENTRY ELEMENTS (KOHA)', 'ADDED ENTRY ELEMENTS (KOHA)', 0, 0, '', ''); |
157 |
('942', 'ADDED ENTRY ELEMENTS (KOHA)', 'ADDED ENTRY ELEMENTS (KOHA)', 0, 0, '', ''); |
95 |
|
158 |
|
Lines 206-211
INSERT INTO `marc_tag_structure` (`tagfield`, `liblibrarian`, `libopac`, `repeat
Link Here
|
206 |
('141', 'Coded Data Field: Copy Specific Attributes', 'Coded Data Field: Copy Specific Attributes', 1, 0, '', ''), |
269 |
('141', 'Coded Data Field: Copy Specific Attributes', 'Coded Data Field: Copy Specific Attributes', 1, 0, '', ''), |
207 |
('145', 'Coded Data Field: Medium of Performance [Obsolete]', 'Coded Data Field: Medium of Performance [Obsolete]', 1, 0, '', ''), |
270 |
('145', 'Coded Data Field: Medium of Performance [Obsolete]', 'Coded Data Field: Medium of Performance [Obsolete]', 1, 0, '', ''), |
208 |
('146', 'Coded Data Field: Medium of Performance', 'Coded Data Field: Medium of Performance', 1, 0, '', ''), |
271 |
('146', 'Coded Data Field: Medium of Performance', 'Coded Data Field: Medium of Performance', 1, 0, '', ''), |
|
|
272 |
('181', 'Coded Data Field: content form', '', 1, 0, '', ''), |
273 |
('182', 'Coded Data Field: media type', '', 1, 0, '', ''), |
209 |
('200', 'Title and Statement of Responsibility', 'Title and Statement of Responsibility', 0, 1, '', ''), |
274 |
('200', 'Title and Statement of Responsibility', 'Title and Statement of Responsibility', 0, 1, '', ''), |
210 |
('204', 'General Material Designation [Obsolete]', 'General Material Designation [Obsolete]', 1, 0, '', ''), |
275 |
('204', 'General Material Designation [Obsolete]', 'General Material Designation [Obsolete]', 1, 0, '', ''), |
211 |
('205', 'Edition Statement', 'Edition Statement', 1, 0, '', ''), |
276 |
('205', 'Edition Statement', 'Edition Statement', 1, 0, '', ''), |
Lines 332-338
INSERT INTO `marc_tag_structure` (`tagfield`, `liblibrarian`, `libopac`, `repeat
Link Here
|
332 |
('617', 'Hierarchical Geographical Name Used as Subject', 'Hierarchical Geographical Name Used as Subject', 1, 0, '', ''), |
397 |
('617', 'Hierarchical Geographical Name Used as Subject', 'Hierarchical Geographical Name Used as Subject', 1, 0, '', ''), |
333 |
('620', 'Place and Date of Publication, Performance, etc.', 'Place and Date of Publication, Performance, etc.', 1, 0, '', ''), |
398 |
('620', 'Place and Date of Publication, Performance, etc.', 'Place and Date of Publication, Performance, etc.', 1, 0, '', ''), |
334 |
('621', 'Place and Date of Provenance', 'Place and Date of Provenance', 1, 0, '', ''), |
399 |
('621', 'Place and Date of Provenance', 'Place and Date of Provenance', 1, 0, '', ''), |
|
|
400 |
('623', 'Character', '', 1 , 0, '', ''), |
335 |
('626', 'Technical Details Access (Electronic Resources) [Obsolete]', 'Technical Details Access (Electronic Resources) [Obsolete]', 1, 0, '', ''), |
401 |
('626', 'Technical Details Access (Electronic Resources) [Obsolete]', 'Technical Details Access (Electronic Resources) [Obsolete]', 1, 0, '', ''), |
|
|
402 |
('631', 'Occupation', '', 1, 0, '', ''), |
403 |
('632', 'Function', '', 1, 0, '', ''), |
336 |
('660', 'Geographic Area Code', 'Geographic Area Code', 1, 0, '', ''), |
404 |
('660', 'Geographic Area Code', 'Geographic Area Code', 1, 0, '', ''), |
337 |
('661', 'Time Period Code', 'Time Period Code', 1, 0, '', ''), |
405 |
('661', 'Time Period Code', 'Time Period Code', 1, 0, '', ''), |
338 |
('670', 'PRECIS', 'PRECIS', 1, 0, '', ''), |
406 |
('670', 'PRECIS', 'PRECIS', 1, 0, '', ''), |
Lines 543-548
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
543 |
('146', 'f', 'Specific Instrument', 'Specific Instrument', 1, 0, '', 1, '', '', '', 0, -6, '', '', '', NULL), |
611 |
('146', 'f', 'Specific Instrument', 'Specific Instrument', 1, 0, '', 1, '', '', '', 0, -6, '', '', '', NULL), |
544 |
('146', 'h', 'Number of Parts', 'Number of Parts', 1, 0, '', 1, '', '', '', 0, -6, '', '', '', NULL), |
612 |
('146', 'h', 'Number of Parts', 'Number of Parts', 1, 0, '', 1, '', '', '', 0, -6, '', '', '', NULL), |
545 |
('146', 'i', 'Number of Players', 'Number of Players', 1, 0, '', 1, '', '', '', 0, -6, '', '', '', NULL), |
613 |
('146', 'i', 'Number of Players', 'Number of Players', 1, 0, '', 1, '', '', '', 0, -6, '', '', '', NULL), |
|
|
614 |
('181', '2', 'System code', '', 0, 0, '', 1, '', '', '', 0, 0, '', '', '', ''), |
615 |
('181', '6', 'Interfield Linking Data', '', 1, 0, '', 1, '', '', '', 0, 0, '', '', '', ''), |
616 |
('181', 'a', 'ISBD Content form Code', '', 0, 0, '', 1, '', '', '', 0, 0, '', '', '', ''), |
617 |
('181', 'b', 'ISBD Content Qualification Code', '', 1, 0, '', 1, '', '', '', 0, 0, '', '', '', ''), |
618 |
('181', 'c', 'Other Coding for Content Form', '', 1, 0, '', 1, 'unimarc_181c', '', '', 0, 0, '', '', '', ''), |
619 |
('182', '2', 'System code', '', 0, 0, '', 1, '', '', '', 0, 0, '', '', '', ''), |
620 |
('182', '6', 'Interfield Linking Data', '', 1, 0, '', 1, '', '', '', 0, 0, '', '', '', ''), |
621 |
('182', 'a', 'ISBD Media Type Code', '', 0, 0, '', 1, 'unimarc_182a', '', '', 0, 0, '', '', '', ''), |
622 |
('182', 'c', 'Other Coding for Media Type', '', 1, 0, '', 1, 'unimarc_182c', '', '', 0, 0, '', '', '', ''), |
546 |
('200', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 2, '', '', '', 0, 0, '', '', '', NULL), |
623 |
('200', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 2, '', '', '', 0, 0, '', '', '', NULL), |
547 |
('200', 'a', 'Title Proper', 'Title Proper', 1, 0, 'biblio.title', 2, '', '', '', 0, 0, '', '', '', NULL), |
624 |
('200', 'a', 'Title Proper', 'Title Proper', 1, 0, 'biblio.title', 2, '', '', '', 0, 0, '', '', '', NULL), |
548 |
('200', 'b', 'General Material Designation', 'General Material Designation', 1, 0, '', 2, '', '', '', 0, 0, '', '', '', NULL), |
625 |
('200', 'b', 'General Material Designation', 'General Material Designation', 1, 0, '', 2, '', '', '', 0, 0, '', '', '', NULL), |
Lines 586-591
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
586 |
('210', 's', 'Printing and/or Publishing Information Transcribed as Found in the Colophon', 'Printing and/or Publishing Information Transcribed as Found in the Colophon', 0, 0, '', 2, '', '', '', 0, -6, '', '', '', NULL), |
663 |
('210', 's', 'Printing and/or Publishing Information Transcribed as Found in the Colophon', 'Printing and/or Publishing Information Transcribed as Found in the Colophon', 0, 0, '', 2, '', '', '', 0, -6, '', '', '', NULL), |
587 |
('211', 'a', 'Date', 'Date', 0, 0, '', 2, '', '', '', 0, 0, '', '', '', NULL), |
664 |
('211', 'a', 'Date', 'Date', 0, 0, '', 2, '', '', '', 0, 0, '', '', '', NULL), |
588 |
('215', 'a', 'Specific Material Designation and Extent of Item', 'Specific Material Designation and Extent of Item', 1, 0, 'biblioitems.pages', 2, '', '', '', 0, 0, '', '', '', NULL), |
665 |
('215', 'a', 'Specific Material Designation and Extent of Item', 'Specific Material Designation and Extent of Item', 1, 0, 'biblioitems.pages', 2, '', '', '', 0, 0, '', '', '', NULL), |
|
|
666 |
('215', 'b', 'Materials and Technique display', '', 0, 0, '', 2, '', '', '', 0, 0, '', '', '', ''), |
589 |
('215', 'c', 'Other Physical Details', 'Other Physical Details', 0, 0, '', 2, '', '', '', 0, 0, '', '', '', NULL), |
667 |
('215', 'c', 'Other Physical Details', 'Other Physical Details', 0, 0, '', 2, '', '', '', 0, 0, '', '', '', NULL), |
590 |
('215', 'd', 'Dimensions', 'Dimensions', 1, 0, 'biblioitems.size', 2, '', '', '', 0, 0, '', '', '', NULL), |
668 |
('215', 'd', 'Dimensions', 'Dimensions', 1, 0, 'biblioitems.size', 2, '', '', '', 0, 0, '', '', '', NULL), |
591 |
('215', 'e', 'Accompanying Material', 'Accompanying Material', 1, 0, '', 2, '', '', '', 0, 0, '', '', '', NULL), |
669 |
('215', 'e', 'Accompanying Material', 'Accompanying Material', 1, 0, '', 2, '', '', '', 0, 0, '', '', '', NULL), |
Lines 652-657
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
652 |
('323', 'a', 'Text of Note', 'Text of Note', 0, 0, '', 3, '', '', '', 0, -5, '', '', '', NULL), |
730 |
('323', 'a', 'Text of Note', 'Text of Note', 0, 0, '', 3, '', '', '', 0, -5, '', '', '', NULL), |
653 |
('324', 'a', 'Text of Note', 'Text of Note', 0, 0, '', 3, '', '', '', 0, -5, '', '', '', NULL), |
731 |
('324', 'a', 'Text of Note', 'Text of Note', 0, 0, '', 3, '', '', '', 0, -5, '', '', '', NULL), |
654 |
('325', 'a', 'Text of Note', 'Text of Note', 0, 0, '', 3, '', '', '', 0, -5, '', '', '', NULL), |
732 |
('325', 'a', 'Text of Note', 'Text of Note', 0, 0, '', 3, '', '', '', 0, -5, '', '', '', NULL), |
|
|
733 |
('325', 'b', 'Type of reproduction', '', 0, 0, '', 3, '', '', '', 0, 0, '', '', '', ''), |
734 |
('325', 'c', 'Place of reproduction', '', 1, 0, '', 3, '', '', '', 0, 0, '', '', '', ''), |
735 |
('325', 'd', 'Agency Responsible for the Reproduction', '', 1, 0, '', 3, '', '', '', 0, 0, '', '', '', ''), |
736 |
('325', 'e', 'Date of publication for the reproduction', '', 0, 0, '', 3, '', '', '', 0, 0, '', '', '', ''), |
737 |
('325', 'f', 'Physical description of the reproduction', '', 0, 0, '', 3, '', '', '', 0, 0, '', '', '', ''), |
738 |
('325', 'g', 'Series statement for the reproduction', '', 0, 0, '', 3, '', '', '', 0, 0, '', '', '', ''), |
739 |
('325', 'h', 'completeness of the reproduction code', '', 0, 0, '', 3, 'unimarc_325h', '', '', 0, 0, '', '', '', ''), |
740 |
('325', 'i', 'Coverage of the reproduction', '', 0, 0, '', 3, '', '', '', 0, 0, '', '', '', ''), |
741 |
('325', 'j', 'Terms of access to the reproduction', '', 1, 0, '', 3, '', '', '', 0, 0, '', '', '', ''), |
742 |
('325', 'n', 'Note About Reproduction', '', 1, 0, '', 3, '', '', '', 0, 0, '', '', '', ''), |
743 |
('325', 'u', 'URL of the reproduction', '', 0, 0, '', 3, '', '', '', 1, 0, '', '', '', ''), |
744 |
('325', 'v', 'Date of consultation', '', 0, 0, '', 3, '', '', '', 0, 0, '', '', '', ''), |
745 |
('325', 'x', 'ISSN of the reproduction', '', 0, 0, '', 3, '', '', '', 0, 0, '', '', '', ''), |
746 |
('325', 'y', 'ISBN of the reproduction', '', 1, 0, '', 3, '', '', '', 0, 0, '', '', '', ''), |
747 |
('325', 'z', 'Date when the URL in $u was found to be invalid', '', 0, 0, '', 3, '', '', '', 0, 0, '', '', '', ''), |
655 |
('326', 'a', 'Frequency', 'Frequency', 0, 0, '', 3, '', '', '', 0, -5, '', '', '', NULL), |
748 |
('326', 'a', 'Frequency', 'Frequency', 0, 0, '', 3, '', '', '', 0, -5, '', '', '', NULL), |
656 |
('326', 'b', 'Dates of Frequency', 'Dates of Frequency', 0, 0, '', 3, '', '', '', 0, -5, '', '', '', NULL), |
749 |
('326', 'b', 'Dates of Frequency', 'Dates of Frequency', 0, 0, '', 3, '', '', '', 0, -5, '', '', '', NULL), |
657 |
('327', 'a', 'Text of Note', 'Text of Note', 1, 0, '', 3, '', '', '', 0, -5, '', '', '', NULL), |
750 |
('327', 'a', 'Text of Note', 'Text of Note', 1, 0, '', 3, '', '', '', 0, -5, '', '', '', NULL), |
Lines 704-709
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
704 |
('410', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
797 |
('410', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
705 |
('410', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
798 |
('410', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
706 |
('410', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
799 |
('410', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
800 |
('410', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
707 |
('410', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
801 |
('410', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
708 |
('410', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
802 |
('410', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
709 |
('410', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
803 |
('410', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 731-736
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
731 |
('411', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
825 |
('411', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
732 |
('411', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
826 |
('411', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
733 |
('411', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
827 |
('411', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
828 |
('411', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
734 |
('411', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
829 |
('411', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
735 |
('411', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
830 |
('411', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
736 |
('411', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
831 |
('411', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 758-763
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
758 |
('412', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
853 |
('412', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
759 |
('412', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
854 |
('412', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
760 |
('412', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
855 |
('412', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
|
|
856 |
('412', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
761 |
('412', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
857 |
('412', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
762 |
('412', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
858 |
('412', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
763 |
('412', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
859 |
('412', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
Lines 785-790
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
785 |
('413', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
881 |
('413', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
786 |
('413', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
882 |
('413', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
787 |
('413', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
883 |
('413', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
|
|
884 |
('413', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
788 |
('413', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
885 |
('413', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
789 |
('413', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
886 |
('413', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
790 |
('413', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
887 |
('413', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
Lines 812-817
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
812 |
('421', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
909 |
('421', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
813 |
('421', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
910 |
('421', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
814 |
('421', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
911 |
('421', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
912 |
('421', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
815 |
('421', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
913 |
('421', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
816 |
('421', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
914 |
('421', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
817 |
('421', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
915 |
('421', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 839-844
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
839 |
('422', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
937 |
('422', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
840 |
('422', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
938 |
('422', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
841 |
('422', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
939 |
('422', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
940 |
('422', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
842 |
('422', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
941 |
('422', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
843 |
('422', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
942 |
('422', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
844 |
('422', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
943 |
('422', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 866-871
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
866 |
('423', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
965 |
('423', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
867 |
('423', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
966 |
('423', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
868 |
('423', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
967 |
('423', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
968 |
('423', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
869 |
('423', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
969 |
('423', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
870 |
('423', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
970 |
('423', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
871 |
('423', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
971 |
('423', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 893-898
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
893 |
('424', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
993 |
('424', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
894 |
('424', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
994 |
('424', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
895 |
('424', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
995 |
('424', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
|
|
996 |
('424', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
896 |
('424', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
997 |
('424', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
897 |
('424', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
998 |
('424', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
898 |
('424', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
999 |
('424', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
Lines 920-925
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
920 |
('425', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1021 |
('425', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
921 |
('425', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1022 |
('425', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
922 |
('425', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1023 |
('425', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
|
|
1024 |
('425', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
923 |
('425', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1025 |
('425', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
924 |
('425', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1026 |
('425', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
925 |
('425', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1027 |
('425', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
Lines 947-952
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
947 |
('430', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1049 |
('430', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
948 |
('430', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1050 |
('430', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
949 |
('430', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1051 |
('430', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1052 |
('430', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
950 |
('430', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1053 |
('430', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
951 |
('430', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1054 |
('430', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
952 |
('430', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1055 |
('430', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 974-979
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
974 |
('431', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1077 |
('431', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
975 |
('431', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1078 |
('431', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
976 |
('431', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1079 |
('431', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1080 |
('431', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
977 |
('431', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1081 |
('431', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
978 |
('431', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1082 |
('431', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
979 |
('431', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1083 |
('431', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1001-1006
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1001 |
('432', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1105 |
('432', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1002 |
('432', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1106 |
('432', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1003 |
('432', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1107 |
('432', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1108 |
('432', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1004 |
('432', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1109 |
('432', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1005 |
('432', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1110 |
('432', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1006 |
('432', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1111 |
('432', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1028-1033
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1028 |
('433', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1133 |
('433', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1029 |
('433', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1134 |
('433', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1030 |
('433', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1135 |
('433', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1136 |
('433', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1031 |
('433', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1137 |
('433', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1032 |
('433', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1138 |
('433', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1033 |
('433', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1139 |
('433', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1055-1060
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1055 |
('434', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1161 |
('434', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1056 |
('434', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1162 |
('434', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1057 |
('434', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1163 |
('434', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1164 |
('434', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1058 |
('434', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1165 |
('434', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1059 |
('434', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1166 |
('434', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1060 |
('434', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1167 |
('434', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1082-1087
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1082 |
('435', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1189 |
('435', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1083 |
('435', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1190 |
('435', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1084 |
('435', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1191 |
('435', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1192 |
('435', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1085 |
('435', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1193 |
('435', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1086 |
('435', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1194 |
('435', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1087 |
('435', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1195 |
('435', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1109-1114
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1109 |
('436', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1217 |
('436', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1110 |
('436', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1218 |
('436', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1111 |
('436', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1219 |
('436', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1220 |
('436', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1112 |
('436', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1221 |
('436', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1113 |
('436', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1222 |
('436', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1114 |
('436', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1223 |
('436', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1136-1141
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1136 |
('437', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1245 |
('437', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1137 |
('437', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1246 |
('437', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1138 |
('437', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1247 |
('437', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1248 |
('437', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1139 |
('437', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1249 |
('437', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1140 |
('437', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1250 |
('437', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1141 |
('437', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1251 |
('437', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1163-1168
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1163 |
('440', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1273 |
('440', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1164 |
('440', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1274 |
('440', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1165 |
('440', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1275 |
('440', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1276 |
('440', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1166 |
('440', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1277 |
('440', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1167 |
('440', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1278 |
('440', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1168 |
('440', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1279 |
('440', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1190-1195
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1190 |
('441', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1301 |
('441', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1191 |
('441', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1302 |
('441', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1192 |
('441', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1303 |
('441', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1304 |
('441', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1193 |
('441', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1305 |
('441', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1194 |
('441', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1306 |
('441', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1195 |
('441', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1307 |
('441', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1217-1222
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1217 |
('442', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1329 |
('442', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1218 |
('442', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1330 |
('442', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1219 |
('442', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1331 |
('442', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1332 |
('442', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1220 |
('442', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1333 |
('442', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1221 |
('442', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1334 |
('442', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1222 |
('442', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1335 |
('442', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1244-1249
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1244 |
('443', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1357 |
('443', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1245 |
('443', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1358 |
('443', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1246 |
('443', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1359 |
('443', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1360 |
('443', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1247 |
('443', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1361 |
('443', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1248 |
('443', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1362 |
('443', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1249 |
('443', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1363 |
('443', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1271-1276
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1271 |
('444', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1385 |
('444', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1272 |
('444', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1386 |
('444', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1273 |
('444', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1387 |
('444', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1388 |
('444', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1274 |
('444', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1389 |
('444', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1275 |
('444', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1390 |
('444', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1276 |
('444', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1391 |
('444', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1298-1303
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1298 |
('445', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1413 |
('445', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1299 |
('445', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1414 |
('445', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1300 |
('445', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1415 |
('445', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1416 |
('445', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1301 |
('445', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1417 |
('445', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1302 |
('445', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1418 |
('445', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1303 |
('445', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1419 |
('445', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1325-1330
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1325 |
('446', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1441 |
('446', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1326 |
('446', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1442 |
('446', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1327 |
('446', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1443 |
('446', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1444 |
('446', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1328 |
('446', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1445 |
('446', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1329 |
('446', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1446 |
('446', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1330 |
('446', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1447 |
('446', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1352-1357
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1352 |
('447', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1469 |
('447', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1353 |
('447', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1470 |
('447', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1354 |
('447', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1471 |
('447', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1472 |
('447', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1355 |
('447', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1473 |
('447', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1356 |
('447', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1474 |
('447', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1357 |
('447', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1475 |
('447', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1379-1384
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1379 |
('448', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1497 |
('448', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1380 |
('448', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1498 |
('448', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1381 |
('448', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1499 |
('448', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1500 |
('448', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1382 |
('448', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1501 |
('448', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1383 |
('448', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1502 |
('448', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1384 |
('448', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1503 |
('448', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1406-1411
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1406 |
('451', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1525 |
('451', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1407 |
('451', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1526 |
('451', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1408 |
('451', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1527 |
('451', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1528 |
('451', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1409 |
('451', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1529 |
('451', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1410 |
('451', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1530 |
('451', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1411 |
('451', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1531 |
('451', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1433-1438
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1433 |
('452', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1553 |
('452', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1434 |
('452', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1554 |
('452', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1435 |
('452', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1555 |
('452', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1556 |
('452', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1436 |
('452', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1557 |
('452', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1437 |
('452', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1558 |
('452', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1438 |
('452', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1559 |
('452', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1460-1465
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1460 |
('453', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1581 |
('453', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1461 |
('453', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1582 |
('453', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1462 |
('453', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1583 |
('453', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1584 |
('453', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1463 |
('453', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1585 |
('453', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1464 |
('453', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1586 |
('453', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1465 |
('453', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1587 |
('453', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1487-1492
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1487 |
('454', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1609 |
('454', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1488 |
('454', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1610 |
('454', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1489 |
('454', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1611 |
('454', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1612 |
('454', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1490 |
('454', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1613 |
('454', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1491 |
('454', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1614 |
('454', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1492 |
('454', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1615 |
('454', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1514-1519
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1514 |
('455', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1637 |
('455', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1515 |
('455', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1638 |
('455', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1516 |
('455', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1639 |
('455', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1640 |
('455', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1517 |
('455', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1641 |
('455', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1518 |
('455', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1642 |
('455', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1519 |
('455', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1643 |
('455', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1541-1546
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1541 |
('456', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1665 |
('456', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1542 |
('456', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1666 |
('456', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1543 |
('456', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1667 |
('456', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1668 |
('456', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1544 |
('456', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1669 |
('456', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1545 |
('456', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1670 |
('456', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1546 |
('456', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1671 |
('456', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1568-1573
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1568 |
('461', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1693 |
('461', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1569 |
('461', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1694 |
('461', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1570 |
('461', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1695 |
('461', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1696 |
('461', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1571 |
('461', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1697 |
('461', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1572 |
('461', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1698 |
('461', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1573 |
('461', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1699 |
('461', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1595-1600
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1595 |
('462', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1721 |
('462', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1596 |
('462', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1722 |
('462', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1597 |
('462', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1723 |
('462', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1724 |
('462', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1598 |
('462', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1725 |
('462', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1599 |
('462', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1726 |
('462', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1600 |
('462', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1727 |
('462', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1622-1627
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1622 |
('463', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1749 |
('463', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1623 |
('463', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1750 |
('463', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1624 |
('463', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1751 |
('463', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1752 |
('463', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1625 |
('463', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1753 |
('463', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1626 |
('463', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1754 |
('463', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1627 |
('463', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1755 |
('463', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1649-1654
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1649 |
('464', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1777 |
('464', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1650 |
('464', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1778 |
('464', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1651 |
('464', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1779 |
('464', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1780 |
('464', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1652 |
('464', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1781 |
('464', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1653 |
('464', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1782 |
('464', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1654 |
('464', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1783 |
('464', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1676-1681
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1676 |
('470', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1805 |
('470', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1677 |
('470', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1806 |
('470', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1678 |
('470', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1807 |
('470', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1808 |
('470', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1679 |
('470', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1809 |
('470', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1680 |
('470', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1810 |
('470', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1681 |
('470', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1811 |
('470', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1703-1708
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1703 |
('481', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1833 |
('481', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1704 |
('481', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1834 |
('481', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1705 |
('481', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1835 |
('481', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1836 |
('481', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1706 |
('481', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1837 |
('481', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1707 |
('481', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1838 |
('481', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1708 |
('481', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1839 |
('481', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1730-1735
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1730 |
('482', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1861 |
('482', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1731 |
('482', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1862 |
('482', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1732 |
('482', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1863 |
('482', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1864 |
('482', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1733 |
('482', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1865 |
('482', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1734 |
('482', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1866 |
('482', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1735 |
('482', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1867 |
('482', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1757-1762
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1757 |
('488', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1889 |
('488', '1', 'Linking Data', 'Linking Data', 1, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1758 |
('488', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1890 |
('488', '3', 'Authority Record Number', 'Authority Record Number', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1759 |
('488', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1891 |
('488', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
|
|
1892 |
('488', '9', 'Koha number', '', 0, 0, '', 4, '', '', '', 0, 0, '', '', '001@', ''), |
1760 |
('488', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1893 |
('488', 'a', 'Author', 'Author', 0, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1761 |
('488', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1894 |
('488', 'b', 'General Material Designation', 'General Material Designation', 0, 0, '', 4, '', '', '', 0, -6, '', '', '', NULL), |
1762 |
('488', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
1895 |
('488', 'c', 'Place of Publication', 'Place of Publication', 1, 0, '', 4, '', '', '', 0, -5, '', '', '', NULL), |
Lines 1830-1835
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1830 |
('503', 'n', 'Institution in Locality', 'Institution in Locality', 0, 0, '', 5, '', '', '', 0, -5, '', '', '', NULL), |
1963 |
('503', 'n', 'Institution in Locality', 'Institution in Locality', 0, 0, '', 5, '', '', '', 0, -5, '', '', '', NULL), |
1831 |
('503', 'o', 'Place in Locality', 'Place in Locality', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1964 |
('503', 'o', 'Place in Locality', 'Place in Locality', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1832 |
('506', '3', 'Authority Entry Record Number', 'Authority Entry Record Number', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1965 |
('506', '3', 'Authority Entry Record Number', 'Authority Entry Record Number', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
|
|
1966 |
('506', '9', 'Koha number', '', 0, 0, '', 5, '', '', '', 0, 0, '', '', '', ''), |
1833 |
('506', 'a', 'Title', 'Title', 0, 1, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1967 |
('506', 'a', 'Title', 'Title', 0, 1, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1834 |
('506', 'c', 'Form of Work', 'Form of Work', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1968 |
('506', 'c', 'Form of Work', 'Form of Work', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1835 |
('506', 'd', 'Date of Work', 'Date of Work', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1969 |
('506', 'd', 'Date of Work', 'Date of Work', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
Lines 1842-1847
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1842 |
('506', 's', 'Numeric Designation (for Music)', 'Numeric Designation (for Music)', 1, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1976 |
('506', 's', 'Numeric Designation (for Music)', 'Numeric Designation (for Music)', 1, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1843 |
('506', 'u', 'Key (for Music)', 'Key (for Music)', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1977 |
('506', 'u', 'Key (for Music)', 'Key (for Music)', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1844 |
('507', '3', 'Authority Entry Record Number', 'Authority Entry Record Number', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1978 |
('507', '3', 'Authority Entry Record Number', 'Authority Entry Record Number', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
|
|
1979 |
('507', '9', 'Koha number', '', 0, 0, '', 5, '', '', '', 0, 0, '', '', '', ''), |
1845 |
('507', 'a', 'Title', 'Title', 0, 1, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1980 |
('507', 'a', 'Title', 'Title', 0, 1, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1846 |
('507', 'c', 'Form of Work', 'Form of Work', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1981 |
('507', 'c', 'Form of Work', 'Form of Work', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1847 |
('507', 'd', 'Date of Work', 'Date of Work', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1982 |
('507', 'd', 'Date of Work', 'Date of Work', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
Lines 1959-1964
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1959 |
('560', 'e', 'Other Title Information', 'Other Title Information', 1, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
2094 |
('560', 'e', 'Other Title Information', 'Other Title Information', 1, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1960 |
('576', '1', 'Linking Data', 'Linking Data', 1, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
2095 |
('576', '1', 'Linking Data', 'Linking Data', 1, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1961 |
('576', '3', 'Authority Entry Record Number', 'Authority Entry Record Number', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
2096 |
('576', '3', 'Authority Entry Record Number', 'Authority Entry Record Number', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
|
|
2097 |
('576', '9', 'Koha number', '', 0, 0, '', 5, '', '', '', 0, 0, '', '', '', ''), |
1962 |
('576', 'a', 'Name', 'Name', 0, 1, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
2098 |
('576', 'a', 'Name', 'Name', 0, 1, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1963 |
('576', 'c', 'Form of Work', 'Form of Work', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
2099 |
('576', 'c', 'Form of Work', 'Form of Work', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1964 |
('576', 'd', 'Date of Work', 'Date of Work', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
2100 |
('576', 'd', 'Date of Work', 'Date of Work', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
Lines 1977-1982
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
1977 |
('576', 'z', 'Chronological Subdivision', 'Chronological Subdivision', 1, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
2113 |
('576', 'z', 'Chronological Subdivision', 'Chronological Subdivision', 1, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1978 |
('577', '1', 'Linking Data', 'Linking Data', 1, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
2114 |
('577', '1', 'Linking Data', 'Linking Data', 1, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1979 |
('577', '3', 'Authority Entry Record Number', 'Authority Entry Record Number', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
2115 |
('577', '3', 'Authority Entry Record Number', 'Authority Entry Record Number', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
|
|
2116 |
('577', '9', 'Koha number', '', 0, 0, '', 5, '', '', '', 0, 0, '', '', '', ''), |
1980 |
('577', 'a', 'Name', 'Name', 0, 1, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
2117 |
('577', 'a', 'Name', 'Name', 0, 1, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1981 |
('577', 'c', 'Form of Work', 'Form of Work', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
2118 |
('577', 'c', 'Form of Work', 'Form of Work', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
1982 |
('577', 'd', 'Date of Work', 'Date of Work', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
2119 |
('577', 'd', 'Date of Work', 'Date of Work', 0, 0, '', 5, '', '', '', 0, -6, '', '', '', NULL), |
Lines 2105-2110
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
2105 |
('616', 'z', 'Chronological Subdivision', 'Chronological Subdivision', 1, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2242 |
('616', 'z', 'Chronological Subdivision', 'Chronological Subdivision', 1, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2106 |
('617', '2', 'System Code', 'System Code', 0, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2243 |
('617', '2', 'System Code', 'System Code', 0, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2107 |
('617', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2244 |
('617', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
|
|
2245 |
('617', '9', 'Koha number', '', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', ''), |
2108 |
('617', 'a', 'Country (Nation State)', 'Country (Nation State)', 1, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2246 |
('617', 'a', 'Country (Nation State)', 'Country (Nation State)', 1, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2109 |
('617', 'b', 'State or Province, etc.', 'State or Province, etc.', 0, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2247 |
('617', 'b', 'State or Province, etc.', 'State or Province, etc.', 0, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2110 |
('617', 'c', 'Intermediate Political Jurisdiction', 'Intermediate Political Jurisdiction', 1, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2248 |
('617', 'c', 'Intermediate Political Jurisdiction', 'Intermediate Political Jurisdiction', 1, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
Lines 2136-2141
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
2136 |
('621', '2', 'System Code', 'System Code', 0, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2274 |
('621', '2', 'System Code', 'System Code', 0, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2137 |
('621', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2275 |
('621', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2138 |
('621', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2276 |
('621', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
|
|
2277 |
('621', '9', 'Koha number', '', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', ''), |
2139 |
('621', 'a', 'Country (Nation State) or Larger Entity Country', 'Country (Nation State) or Larger Entity Country', 0, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2278 |
('621', 'a', 'Country (Nation State) or Larger Entity Country', 'Country (Nation State) or Larger Entity Country', 0, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2140 |
('621', 'b', 'State or Province, etc.', 'State or Province, etc.', 0, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2279 |
('621', 'b', 'State or Province, etc.', 'State or Province, etc.', 0, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2141 |
('621', 'c', 'Intermediate Political Jurisdiction', 'Intermediate Political Jurisdiction', 1, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2280 |
('621', 'c', 'Intermediate Political Jurisdiction', 'Intermediate Political Jurisdiction', 1, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
Lines 2152-2157
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
2152 |
('626', 'a', 'Make and Model of Machines', 'Make and Model of Machines', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', NULL), |
2291 |
('626', 'a', 'Make and Model of Machines', 'Make and Model of Machines', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', NULL), |
2153 |
('626', 'b', 'Programming Languages', 'Programming Languages', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', NULL), |
2292 |
('626', 'b', 'Programming Languages', 'Programming Languages', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', NULL), |
2154 |
('626', 'c', 'Operating System', 'Operating System', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', NULL), |
2293 |
('626', 'c', 'Operating System', 'Operating System', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', NULL), |
|
|
2294 |
('631', '2', 'System Code', '', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', ''), |
2295 |
('631', '3', 'Authority Record Number', '', 1, 0, '', 6, '', '', '', 0, 0, '', '', '', ''), |
2296 |
('631', '8', 'Materials specified', '', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', ''), |
2297 |
('631', 'a', 'occupation', 'sujet', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', ''), |
2298 |
('631', 'b', 'form', '', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', ''), |
2299 |
('631', 'j', 'Form Subdivision', '', 1, 0, '', 6, '', '', '', 0, 0, '', '', '', ''), |
2300 |
('631', 'x', 'Topical Subdivision', '', 1, 0, '', 6, '', '', '', 0, 0, '', '', '', ''), |
2301 |
('631', 'y', 'Geographical Subdivision', '', 1, 0, '', 6, '', '', '', 0, 0, '', '', '', ''), |
2302 |
('631', 'z', 'Chronological Subdivision', '', 1, 0, '', 6, '', '', '', 0, 0, '', '', '', ''), |
2303 |
('632', '2', 'System Code', '', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', ''), |
2304 |
('632', '3', 'Authority Record Number', '', 1, 0, '', 6, '', '', '', 0, 0, '', '', '', ''), |
2305 |
('632', '8', 'Materials specified', '', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', ''), |
2306 |
('632', 'a', 'Function', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', ''), |
2307 |
('632', 'j', 'Form Subdivision', '', 1, 0, '', 6, '', '', '', 0, 0, '', '', '', ''), |
2308 |
('632', 'x', 'Topical Subdivision', '', 1, 0, '', 6, '', '', '', 0, 0, '', '', '', ''), |
2309 |
('632', 'y', 'Geographical Subdivision', '', 1, 0, '', 6, '', '', '', 0, 0, '', '', '', ''), |
2310 |
('632', 'z', 'Chronological Subdivision', '', 1, 0, '', 6, '', '', '', 0, 0, '', '', '', ''), |
2155 |
('660', 'a', 'Code', 'Code', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', NULL), |
2311 |
('660', 'a', 'Code', 'Code', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', NULL), |
2156 |
('661', 'a', 'Time Period Code', 'Time Period Code', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', NULL), |
2312 |
('661', 'a', 'Time Period Code', 'Time Period Code', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', NULL), |
2157 |
('670', 'b', 'Subject Indicator Number', 'Subject Indicator Number', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', NULL), |
2313 |
('670', 'b', 'Subject Indicator Number', 'Subject Indicator Number', 0, 0, '', 6, '', '', '', 0, 0, '', '', '', NULL), |
Lines 2177-2182
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
2177 |
('686', 'v', 'Edition', 'Edition', 0, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2333 |
('686', 'v', 'Edition', 'Edition', 0, 0, '', 6, '', '', '', 0, -6, '', '', '', NULL), |
2178 |
('700', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2334 |
('700', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2179 |
('700', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2335 |
('700', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
|
|
2336 |
('700', '8', 'Materials specified', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2180 |
('700', '9', 'Koha Internal Code', 'Koha Internal Code', 0, 0, '', 7, '', '', '', 0, 1, '', '', '', NULL), |
2337 |
('700', '9', 'Koha Internal Code', 'Koha Internal Code', 0, 0, '', 7, '', '', '', 0, 1, '', '', '', NULL), |
2181 |
('700', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', 'PER', '', 0, 0, '', '', '', NULL), |
2338 |
('700', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', 'PER', '', 0, 0, '', '', '', NULL), |
2182 |
('700', 'b', 'Part of Name Other than Entry Element', 'Part of Name Other than Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2339 |
('700', 'b', 'Part of Name Other than Entry Element', 'Part of Name Other than Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
Lines 2184-2193
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
2184 |
('700', 'd', 'Roman Numerals', 'Roman Numerals', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2341 |
('700', 'd', 'Roman Numerals', 'Roman Numerals', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2185 |
('700', 'f', 'Dates', 'Dates', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2342 |
('700', 'f', 'Dates', 'Dates', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2186 |
('700', 'g', 'Expansion of Initials of Forename', 'Expansion of Initials of Forename', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2343 |
('700', 'g', 'Expansion of Initials of Forename', 'Expansion of Initials of Forename', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
|
|
2344 |
('700', 'k', 'Attribution qualifier', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2187 |
('700', 'o', 'International Standard Identifier for the Name', 'International Standard Identifier for the Name', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2345 |
('700', 'o', 'International Standard Identifier for the Name', 'International Standard Identifier for the Name', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2188 |
('700', 'p', 'Affiliation/Address', 'Affiliation/Address', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2346 |
('700', 'p', 'Affiliation/Address', 'Affiliation/Address', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2189 |
('701', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2347 |
('701', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2190 |
('701', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2348 |
('701', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
|
|
2349 |
('701', '8', 'Materials specified', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2191 |
('701', '9', 'Koha Internal Code', 'Koha Internal Code', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2350 |
('701', '9', 'Koha Internal Code', 'Koha Internal Code', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2192 |
('701', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2351 |
('701', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2193 |
('701', 'b', 'Part of Name Other than Entry Element', 'Part of Name Other than Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2352 |
('701', 'b', 'Part of Name Other than Entry Element', 'Part of Name Other than Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
Lines 2195-2204
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
2195 |
('701', 'd', 'Roman Numerals', 'Roman Numerals', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2354 |
('701', 'd', 'Roman Numerals', 'Roman Numerals', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2196 |
('701', 'f', 'Dates', 'Dates', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2355 |
('701', 'f', 'Dates', 'Dates', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2197 |
('701', 'g', 'Expansion of Initials of Forename', 'Expansion of Initials of Forename', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2356 |
('701', 'g', 'Expansion of Initials of Forename', 'Expansion of Initials of Forename', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
|
|
2357 |
('701', 'k', 'Attribution qualifier', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2358 |
('701', 'o', 'ISNI', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2198 |
('701', 'p', 'Affiliation/Address', 'Affiliation/Address', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2359 |
('701', 'p', 'Affiliation/Address', 'Affiliation/Address', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2199 |
('702', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2360 |
('702', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2200 |
('702', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2361 |
('702', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2201 |
('702', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2362 |
('702', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
|
|
2363 |
('702', '8', 'Materials specified', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2202 |
('702', '9', 'Koha Internal Code', 'Koha Internal Code', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2364 |
('702', '9', 'Koha Internal Code', 'Koha Internal Code', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2203 |
('702', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2365 |
('702', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2204 |
('702', 'b', 'Part of Name Other than Entry Element', 'Part of Name Other than Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2366 |
('702', 'b', 'Part of Name Other than Entry Element', 'Part of Name Other than Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
Lines 2206-2227
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
2206 |
('702', 'd', 'Roman Numerals', 'Roman Numerals', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2368 |
('702', 'd', 'Roman Numerals', 'Roman Numerals', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2207 |
('702', 'f', 'Dates', 'Dates', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2369 |
('702', 'f', 'Dates', 'Dates', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2208 |
('702', 'g', 'Expansion of Initials of Forename', 'Expansion of Initials of Forename', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2370 |
('702', 'g', 'Expansion of Initials of Forename', 'Expansion of Initials of Forename', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
|
|
2371 |
('702', 'k', 'Attribution qualifier', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2209 |
('702', 'o', 'International Standard Identifier for the Name', 'International Standard Identifier for the Name', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2372 |
('702', 'o', 'International Standard Identifier for the Name', 'International Standard Identifier for the Name', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2210 |
('702', 'p', 'Affiliation/Address', 'Affiliation/Address', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2373 |
('702', 'p', 'Affiliation/Address', 'Affiliation/Address', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2211 |
('702', 'r', 'Part or Role Played', 'Part or Role Played', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2374 |
('702', 'r', 'Part or Role Played', 'Part or Role Played', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2212 |
('703', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2375 |
('703', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2213 |
('703', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2376 |
('703', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2214 |
('703', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2377 |
('703', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
|
|
2378 |
('703', '8', 'Materials specified', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2379 |
('703', '9', 'koha internal code', '', 0, 0, '', 7, '', '', '', 0, 1, '', NULL, '', ''), |
2215 |
('703', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2380 |
('703', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2216 |
('703', 'b', 'Part of Name Other than Entry Element', 'Part of Name Other than Entry Element', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2381 |
('703', 'b', 'Part of Name Other than Entry Element', 'Part of Name Other than Entry Element', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2217 |
('703', 'c', 'Additions to Names Other than Dates', 'Additions to Names Other than Dates', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2382 |
('703', 'c', 'Additions to Names Other than Dates', 'Additions to Names Other than Dates', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2218 |
('703', 'd', 'Roman Numerals', 'Roman Numerals', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2383 |
('703', 'd', 'Roman Numerals', 'Roman Numerals', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2219 |
('703', 'f', 'Dates', 'Dates', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2384 |
('703', 'f', 'Dates', 'Dates', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2220 |
('703', 'g', 'Expansion of Initials of Forename', 'Expansion of Initials of Forename', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2385 |
('703', 'g', 'Expansion of Initials of Forename', 'Expansion of Initials of Forename', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
|
|
2386 |
('703', 'k', 'Attribution qualifier', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2221 |
('703', 'o', 'International Standard Identifier for the Name', 'International Standard Identifier for the Name', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2387 |
('703', 'o', 'International Standard Identifier for the Name', 'International Standard Identifier for the Name', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2222 |
('703', 'p', 'Affiliation/Address', 'Affiliation/Address', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2388 |
('703', 'p', 'Affiliation/Address', 'Affiliation/Address', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2223 |
('710', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2389 |
('710', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2224 |
('710', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2390 |
('710', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
|
|
2391 |
('710', '8', 'Materials specified', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2392 |
('710', '9', 'koha internal code', '', 1, 0, '', 7, '', '', '', 0, 0, '', NULL, '', ''), |
2225 |
('710', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2393 |
('710', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2226 |
('710', 'b', 'Subdivision', 'Subdivision', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2394 |
('710', 'b', 'Subdivision', 'Subdivision', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2227 |
('710', 'c', 'Addition to Name or Qualifier', 'Addition to Name or Qualifier', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2395 |
('710', 'c', 'Addition to Name or Qualifier', 'Addition to Name or Qualifier', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
Lines 2234-2239
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
2234 |
('710', 'p', 'Affiliation/Address', 'Affiliation/Address', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2402 |
('710', 'p', 'Affiliation/Address', 'Affiliation/Address', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2235 |
('711', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2403 |
('711', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2236 |
('711', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2404 |
('711', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
|
|
2405 |
('711', '8', 'Materials specified', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2406 |
('711', '9', 'koha internal code', '', 1, 0, '', 7, '', '', '', 0, 0, '', NULL, '', ''), |
2237 |
('711', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2407 |
('711', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2238 |
('711', 'b', 'Subdivision', 'Subdivision', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2408 |
('711', 'b', 'Subdivision', 'Subdivision', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2239 |
('711', 'c', 'Addition to Name or Qualifier', 'Addition to Name or Qualifier', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2409 |
('711', 'c', 'Addition to Name or Qualifier', 'Addition to Name or Qualifier', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
Lines 2242-2251
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
2242 |
('711', 'f', 'Date of Meeting', 'Date of Meeting', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2412 |
('711', 'f', 'Date of Meeting', 'Date of Meeting', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2243 |
('711', 'g', 'Inverted Element', 'Inverted Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2413 |
('711', 'g', 'Inverted Element', 'Inverted Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2244 |
('711', 'h', 'Part of Name Other than Entry Element and Inverted Element', 'Part of Name Other than Entry Element and Inverted Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2414 |
('711', 'h', 'Part of Name Other than Entry Element and Inverted Element', 'Part of Name Other than Entry Element and Inverted Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
|
|
2415 |
('711', 'o', 'ISNI', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2245 |
('711', 'p', 'Affiliation/Address', 'Affiliation/Address', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2416 |
('711', 'p', 'Affiliation/Address', 'Affiliation/Address', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2246 |
('712', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2417 |
('712', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2247 |
('712', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2418 |
('712', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2248 |
('712', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 1, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2419 |
('712', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 1, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
|
|
2420 |
('712', '8', 'Materials specified', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2421 |
('712', '9', 'koha internal code', '', 1, 0, '', 7, '', '', '', 0, 0, '', NULL, '', ''), |
2249 |
('712', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2422 |
('712', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2250 |
('712', 'b', 'Subdivision', 'Subdivision', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2423 |
('712', 'b', 'Subdivision', 'Subdivision', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2251 |
('712', 'c', 'Addition to Name or Qualifier', 'Addition to Name or Qualifier', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2424 |
('712', 'c', 'Addition to Name or Qualifier', 'Addition to Name or Qualifier', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
Lines 2254-2264
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
2254 |
('712', 'f', 'Date of Meeting', 'Date of Meeting', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2427 |
('712', 'f', 'Date of Meeting', 'Date of Meeting', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2255 |
('712', 'g', 'Inverted Element', 'Inverted Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2428 |
('712', 'g', 'Inverted Element', 'Inverted Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2256 |
('712', 'h', 'Part of Name Other than Entry Element and Inverted Element', 'Part of Name Other than Entry Element and Inverted Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2429 |
('712', 'h', 'Part of Name Other than Entry Element and Inverted Element', 'Part of Name Other than Entry Element and Inverted Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
|
|
2430 |
('712', 'o', 'ISNI', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2257 |
('712', 'p', 'Affiliation/Address', 'Affiliation/Address', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2431 |
('712', 'p', 'Affiliation/Address', 'Affiliation/Address', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2258 |
('712', 'r', 'Part or Role Played', 'Part or Role Played', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2432 |
('712', 'r', 'Part or Role Played', 'Part or Role Played', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2259 |
('713', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2433 |
('713', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2260 |
('713', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2434 |
('713', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2261 |
('713', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 1, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2435 |
('713', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 1, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
|
|
2436 |
('713', '8', 'Materials specified', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2437 |
('713', '9', 'koha internal code', '', 0, 0, '', 7, '', '', '', 0, 0, '', NULL, '', ''), |
2262 |
('713', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2438 |
('713', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2263 |
('713', 'b', 'Subdivision', 'Subdivision', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2439 |
('713', 'b', 'Subdivision', 'Subdivision', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2264 |
('713', 'c', 'Addition to Name or Qualifier', 'Addition to Name or Qualifier', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2440 |
('713', 'c', 'Addition to Name or Qualifier', 'Addition to Name or Qualifier', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
Lines 2267-2272
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
2267 |
('713', 'f', 'Date of Meeting', 'Date of Meeting', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2443 |
('713', 'f', 'Date of Meeting', 'Date of Meeting', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2268 |
('713', 'g', 'Inverted Element', 'Inverted Element', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2444 |
('713', 'g', 'Inverted Element', 'Inverted Element', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2269 |
('713', 'h', 'Part of Name Other than Entry Element and Inverted Element', 'Part of Name Other than Entry Element and Inverted Element', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2445 |
('713', 'h', 'Part of Name Other than Entry Element and Inverted Element', 'Part of Name Other than Entry Element and Inverted Element', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
|
|
2446 |
('713', 'o', 'ISNI', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2270 |
('713', 'p', 'Affiliation/Address', 'Affiliation/Address', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2447 |
('713', 'p', 'Affiliation/Address', 'Affiliation/Address', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2271 |
('716', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2448 |
('716', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2272 |
('716', 'a', 'Data Element', 'Data Element', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2449 |
('716', 'a', 'Data Element', 'Data Element', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
Lines 2274-2279
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
2274 |
('716', 'f', 'Dates', 'Dates', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2451 |
('716', 'f', 'Dates', 'Dates', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2275 |
('720', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2452 |
('720', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2276 |
('720', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2453 |
('720', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
|
|
2454 |
('720', '8', 'Materials specified', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2455 |
('720', '9', 'Koha number', '', 1, 0, '', 7, '', '', '', 0, 0, '', NULL, '', ''), |
2277 |
('720', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2456 |
('720', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2278 |
('720', 'c', 'Type of Family', 'Type of Family', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2457 |
('720', 'c', 'Type of Family', 'Type of Family', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2279 |
('720', 'd', 'Places Associated with the Family', 'Places Associated with the Family', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2458 |
('720', 'd', 'Places Associated with the Family', 'Places Associated with the Family', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
Lines 2281-2291
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
2281 |
('720', 'o', 'International Standard Identifier for the Name', 'International Standard Identifier for the Name', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2460 |
('720', 'o', 'International Standard Identifier for the Name', 'International Standard Identifier for the Name', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2282 |
('721', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2461 |
('721', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2283 |
('721', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2462 |
('721', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
|
|
2463 |
('721', '8', 'Materials specified', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2464 |
('721', '9', 'koha internal code', '', 1, 0, '', 7, '', '', '', 0, 0, '', NULL, '', ''), |
2284 |
('721', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2465 |
('721', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
|
|
2466 |
('721', 'c', 'Type of family', '', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2467 |
('721', 'd', 'Places Associated with the Family', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2285 |
('721', 'f', 'Dates', 'Dates', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2468 |
('721', 'f', 'Dates', 'Dates', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
|
|
2469 |
('721', 'o', 'ISNI', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2286 |
('722', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2470 |
('722', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2287 |
('722', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2471 |
('722', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2288 |
('722', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 1, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2472 |
('722', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 1, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
|
|
2473 |
('722', '8', 'Materials specified', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2474 |
('722', '9', 'Koha number', '', 1, 0, '', 7, '', '', '', 0, 0, '', NULL, '', ''), |
2289 |
('722', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2475 |
('722', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, 0, '', '', '', NULL), |
2290 |
('722', 'c', 'Type of Family', 'Type of Family', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2476 |
('722', 'c', 'Type of Family', 'Type of Family', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2291 |
('722', 'd', 'Places Associated with the Family', 'Places Associated with the Family', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2477 |
('722', 'd', 'Places Associated with the Family', 'Places Associated with the Family', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
Lines 2295-2300
INSERT INTO `marc_subfield_structure` (`tagfield`, `tagsubfield`, `liblibrarian`
Link Here
|
2295 |
('723', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2481 |
('723', '3', 'Authority Record Number', 'Authority Record Number', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2296 |
('723', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2482 |
('723', '4', 'Relator Code', 'Relator Code', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2297 |
('723', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 1, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2483 |
('723', '5', 'Institution to Which the Field Applies', 'Institution to Which the Field Applies', 0, 1, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
|
|
2484 |
('723', '8', 'Materials specified', '', 1, 0, '', 7, '', '', '', 0, 0, '', '', '', ''), |
2485 |
('723', '9', 'Koha number', '', 0, 0, '', 7, '', '', '', 0, 1, '', NULL, '', ''), |
2298 |
('723', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2486 |
('723', 'a', 'Entry Element', 'Entry Element', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2299 |
('723', 'c', 'Type of Family', 'Type of Family', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2487 |
('723', 'c', 'Type of Family', 'Type of Family', 0, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2300 |
('723', 'd', 'Places Associated with the Family', 'Places Associated with the Family', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2488 |
('723', 'd', 'Places Associated with the Family', 'Places Associated with the Family', 1, 0, '', 7, '', '', '', 0, -6, '', '', '', NULL), |
2301 |
- |
|
|