Taiga 1274 (24976) Updated guided reports process
[kohadocs.git] / source / searching.rst
1 .. include:: images.rst
2
3 Searching
4 =========
5
6 .. _search-history-label:
7
8 Search history
9 ---------------------------------------------
10
11 If you have your :ref:`EnableSearchHistory`
12 preference set to keep your search history then you can access this
13 information by clicking on your username in the top right of the staff
14 client and choosing 'Search history'.
15
16 |image1062|
17
18 From this page you will see your bibliographic search history
19
20 |image1063|
21
22 And your authority search history.
23
24 |image1064|
25
26
27 .. _advanced-search-prefixes-label:
28
29 Advanced Search Prefixes
30 ----------------------------------------------
31
32 The following prefixes can be added to search terms in the keyword
33 search box to limit items returned
34
35 -  ti: title search
36
37    -  ex. ti:hamlet
38
39 -  su: subject search
40
41    -  ex. su:cooking
42
43 -  pb: publisher search
44
45    -  ex. pb:penguin
46
47 -  au: author search
48
49    -  ex. au:rowling
50
51 -  su-geo: geographic subjects
52
53    -  ex. su-geo:wales and kw:description and kw:travel
54
55 -  bc: barcode
56
57    -  ex. bc:502326000912
58
59 -  lex: lexile
60
61    -  levels lex:510
62
63 .. _guide-to-searching-label:
64
65 Guide to Searching
66 -------------------------------------
67
68 This brief guide will explain a chart that shows a sample of how a
69 MARC21 database can be configured, as well as a brief introductory
70 searching guide. The indexing fields described in this document relate
71 to the bibliographic data and does not address authority database
72 indexing.
73
74 .. _indexing-and-searching-description-label:
75
76 Indexing and Searching Description
77 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
78
79 Koha's databases are indexed by the Zebra open-source software. The
80 overview to the documentation describes Zebra as:
81
82     "...Zebra is a high-performance, general-purpose structured text
83     indexing and retrieval engine. It reads records in a variety of
84     input formats (eg. email, XML, MARC) and provides access to them
85     through a powerful combination of Boolean search expressions and
86     relevance-ranked free-text queries.
87
88     Zebra supports large databases (tens of millions of records, tens of
89     gigabytes of data). It allows safe, incremental database updates on
90     live systems. Because Zebra supports the industry-standard
91     information retrieval protocol, Z39.50, you can search Zebra
92     databases using an enormous variety of programs and toolkits, both
93     commercial and free, which understands this protocol..." Zebra -
94     User's Guide and Reference, p. 1,
95     http://www.indexdata.dk/zebra/doc/zebra.pdf
96
97 This brief guide will explain a chart that shows a sample of how a
98 MARC21 database can be configured, as well as a brief introductory
99 searching guide. The indexing fields described in this document relate
100 to the bibliographic data and does not address authority database
101 indexing.
102
103     **Note**
104
105     The indexing described in this document is the set used by
106     SouthEastern University. Your local indexing may vary.
107
108 .. _indexing-configuration-label:
109
110 Indexing Configuration
111 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
112
113 There are three configuration files that Koha uses while indexing.
114
115 The first configuration file (etc/zebradb/biblios/etc/bib1.att) contains
116 the Z39.50 bib-1 attribute list, plus the Koha local use attributes for
117 Biblio Indexes, Items Index, and Fixed Fields and other special indexes.
118 The Z39.50 Bib-1 profile is made up of several different types of
119 attributes: Use, Relation, Position, Structure, Truncation, and
120 Completeness. The bib-1 'Use' attribute is represented on the chart; the
121 other attributes are used primarily when doing searches. While there are
122 over 150+ use attributes that could be used to define your indexing set,
123 it's unlikely that you will choose to use them all. The attributes you
124 elect to use are those that become the indexing rules for your database.
125 The other five attribute sets define the various ways that a search can
126 be further defined, and will not specifically be addressed in this
127 document. For a complete list of the standard Bib-1 attributes, go to
128 http://www.loc.gov/z3950/agency/defns/bib1.html.
129
130 The second file is
131 etc/zebradb/marc\_defs/[marc21\|unimarc]/biblios/record.abs if you use
132 grs1 indexing [the default until 3.16] or
133 etc/zebradb/marc\_defs/[marc21\|unimarc]/biblios/biblio-koha-indexdefs.xml
134 if you use dom indexing [the default from 3.18]. Either files contains
135 the abstract syntax which maps the MARC21 tags to the set of Use
136 Attributes you choose to use. To be more precise the xml file to be
137 activate needs to be transform into biblio-zebra-indexdefs.xsl, read the
138 head of biblio-zebra-indexdefs.xsl to know more about this topic. The
139 rules established in this file provides a passable Bath level 0 and 1
140 service, which includes author, title, subject, keyword and exact
141 services such as standard identifiers (LCCN, ISBN, ISSN, etc.)
142
143 The third file (etc/zebradb/ccl.properties) is the Common Command
144 Language (CCL) field mappings. This file combines the bib-1 attribute
145 set file and the abstract file and adds the qualifiers, usually known as
146 index names. The qualifiers, or indexes, for this database are: pn, cpn,
147 cfn, ti, se, ut, nb, ns, sn, lcn, callnum, su, su-to, su-geo, su-ut,
148 yr,pubdate, acqdate, ln, pl, ab, nt, rtype, mc-rtype, mus, au, su-na,
149 kw, pb, ctype, and an.
150
151 The :ref:`Koha Indexing Chart <koha-search-indexes-label>` summarizes the contents
152 of all three of these files in a more readable format. The first two
153 columns labeled Z39.50 attribute and Z39.50 name matches the Z39.50
154 bib-1 attributes file. The third column labeled MARC tags indexed is
155 where you find which MARC tags are mapped to an attribute. The fourth
156 column labeled Qualifiers identifies the search abbreviations used in
157 the internal CCL query. The following description provides a definition
158 for the word 'qualifiers'.
159
160 *Qualifiers are used to direct the search to a particular searchable
161 index, such as title (ti) and author indexes (au). The CCL standard
162 itself doesn't specify a particular set of qualifiers, but it does
163 suggest a few shorthand notations. You can customize the CCL parser to
164 support a particular set of qualifiers to reflect the current target
165 profile. Traditionally, a qualifier would map to a particular
166 use-attribute within the BIB-1attribute set. It is also possible to set
167 other attributes, such as the structure attribute.*
168
169 In the MARC tags indexed column, there are some conventions used that
170 have specific meanings. They are:
171
172 -  A three digit tag (100) means that all subfields in the tag can be
173    used in a search query. So, if you enter a search for 'Jackson' as an
174    author, you will retrieve records where Jackson could be the last
175    name or the first name.
176
177 -  A three digit tag that has a '$' followed by a letter (600$a) means
178    that a search query will only search the 'a' subfield.
179
180 -  A three digit tag that is followed by a ':' and a letter (240:w)
181    means that a search query can be further qualified. The letter
182    following the ':' identifies how to conduct the search. The most
183    common values you'll see are 'w' (word), 'p' (phrase), 's' (sort),
184    and 'n' (numeric).
185
186 The contents of the MARC tags, subfields, and/or fixed field elements
187 that are listed in this chart are all indexed. You'll see that every
188 attribute line is not mapped to a specific qualifier (index)-LC card
189 number, line 9 is one example. However, every indexed word (a string of
190 characters preceded and succeeded by a space) can be searched using a
191 keyword (kw) search. So, although an LC card number specific index
192 doesn't exist, you can still search by the LCCN since tag 010 is
193 assigned to the LC-card-number attribute. To verify this, enter 72180055
194 in the persistent search box. You should retrieve The gods themselves,
195 by Isaac Asimov.
196
197 Examples of fixed field elements indexing can be seen on the chart
198 between Attribute 8822 and Attribute 8703. These attributes are most
199 commonly used for limiting. The fixed field attributes currently
200 represent the BK codes. Other format codes, if needed, could be defined.
201
202 .. _basic-searching-label:
203
204 Basic Searching
205 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
206
207 The search box that library staff and library patrons will see most
208 often is the persistent search box at the top of the page. Koha
209 interprets the searches as keyword searches.
210
211 |image1037|
212
213 To start a search, you enter a word or multiple words in the search box.
214 When a single word is entered, a keyword search is performed. You can
215 check this out by typing one word into the form and note the number of
216 results located. Then, repeat the search with a minor change. In front
217 of the search word, type 'kw=' followed by the same search term. The
218 results will be identical.
219
220 When you have more than one word in the search box, Koha will still do a
221 keyword search, but a bit differently. Each word will be searched on its
222 own, then the Boolean connector 'and' will narrow your search to those
223 items with all words contained in matching records.
224
225 Suppose you want to find material about how libraries are using mashups.
226 You'll select the major words and enter them into the persistent search
227 box.
228
229 |image1038|
230
231 The response to this search is:
232
233 |image1039|
234
235 The order of the words does not affect the retrieval results, so you
236 could also enter the search as "mashups library". The response to this
237 search is results
238
239 |image1040|
240
241 Too many words in the search box will find very few matches, as the
242 following example illustrates:
243
244 |image1041|
245
246 .. _advanced-searching-label:
247
248 Advanced Searching
249 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
250
251 When you can't find the most appropriate material with a general search,
252 you can move to the Advanced Search page by clicking on the Search
253 option on the persistent toolbar.
254
255 |image1042|
256
257 The Advanced Search page offers many ways to limit the results of your
258 search. You can search using the Boolean operators AND, OR, and NOT;
259 limit by item type; limit by year and language; limit by subtypes
260 audience, content, format, or additional content types; by location and
261 by availability.
262
263 The first limiting section on the Advanced Search page provides a quick
264 and simple way to use the Boolean operators in your search. Note that
265 this display depends on a system preference setting. This option can be
266 found on the Administration > System Preferences > Searching page. The
267 option called :ref:`expandedSearchOption` must be
268 set to 'show' to see the following display.
269
270 |image1043|
271
272 In this section you can choose among the many indexes by clicking on the
273 arrow in the first box. The blank box that follows is where you enter
274 your first search term or terms. On the second line, you can choose the
275 Boolean operator you want to use in your search. The options are 'and',
276 'or', and 'not'. Then, you would again choose the index to search,
277 followed by the second term or terms. If you have more concepts you want
278 to include in your search, you can click the [+] to add another line for
279 your search.
280
281 A sample search is shown next, followed by its results:
282
283 |image1044|
284
285 |image1045|
286
287 When you use the Boolean operators to broaden or narrow a search,
288 remember the action of each operator. The 'and' operator narrows the
289 results you'll retrieve because the search will retrieve the records
290 that include all your search terms. The 'or' operator expands the
291 results because the search will look for occurrences of all of your
292 search terms. The 'not' operator excludes records with the term that
293 follows the operator.
294
295 Note: If you leave this :ref:`expandedSearchOption`
296 set to 'don't show', this is the display you will see:
297
298 |image1046|
299
300 The Advanced Search page then shows the multiple kinds of limits that
301 can be applied to your search results. Either check a box or select from
302 the drop down menus to narrow your search. You will type the year, year
303 range, or a 'greater than (>)' or 'less than (<)' year.
304
305 |image1047|
306
307 Finally, you can choose how the results will be sorted. The pre-defined
308 sort options are in the final area of the Advanced Search screen.
309
310 |image1048|
311
312 The default sort is by relevance, although you can choose to sort by
313 author, by title, by call number, by dates, or by popularity (which uses
314 the information on total issues found in the items table). If you would
315 prefer a different default sort, you can set
316 :ref:`defaultSortField <defaultsortfield-&-defaultsortorder-label>` to one of the other choices in
317 Administration > System Preferences > Searching.
318
319 .. _search-results-label:
320
321 Search results
322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
323
324 After performing a search the number of results found for your search will
325 appear above the results.
326
327 |image1329|
328
329 To the left, you will find filters, or facets, to refine your search. Currently 
330 available facets include:
331
332 -  Availability
333
334 -  Authors
335
336 -  Collections
337
338 -  Home library, holding library or both
339
340     **Note**
341
342     This depends on your setting for the :ref:`DisplayLibraryFacets 
343     <displaylibraryfacets-label>` system preference.
344
345 -  Item types
346
347 -  Locations
348
349 -  Series
350
351 -  Places (geographic name headings)
352
353 -  Topics (subject headings)
354
355 -  Titles (uniform title headings)
356
357 When there are more than five facets in a category, a 'Show more' link
358 will appear. You can control the display of the facets using the following
359 systempreferences: :ref:`displayFacetCount <displayfacetcount-label>`, :ref:
360 `isplayLibraryFacets <displaylibraryfacets-label>`, :ref:`FacetLabelTruncationLength
361  <facetlabeltruncationlength-label>`, :ref:`FacetMaxCount <facetmaxcount-label>`, 
362 :ref:`maxRecordsForFacets <maxrecordsforfacets-label>`, and :ref:`UNIMARCAuthorsFacetsSeparator
363  <unimarcauthorsfacetsseparator-label>`.
364
365 Along the top, under the number of results, there are buttons to do different actions
366 on selected records.
367
368 -  'Select all': selects all the records on the page.
369
370 -  'Clear all': unselects all the records that were selected.
371
372 -  'Unhighlight': removes the red/yellow highlighting of the search term(s).
373
374 -  'Add to cart': adds selected record(s) to the :ref:`cart <cart-label>`.
375
376     **Note**
377     
378     The :ref:`intranetbookbag <intranetbookbag-label>` system preference needs to be
379     set to 'Show' in order for that button to appear.
380
381 -  'Add to list': adds selected record(s) to the chosen :ref:`list <lists-label>`.
382
383 -  'Place hold': places a hold on the selected record(s).
384
385 -  'Browse selected records': goes to the detailed record page of the selected record(s).
386    Clicking on 'Next' or 'Previous' from the detailed record will bring you to the next
387    selected record. 
388
389     **Note**
390
391     The :ref:`BrowseResultSelection <browseresultselection-label>` system preference
392     needs to be enabled in order for that button to appear.
393
394 -  'Z39.50/SRU search': opens the Z39.50/SRU search popup window with the fields
395    pre-filled with the search terms.
396
397 -  'Sort': lets you choose a sorting field and order.
398
399     **Note**
400
401     By default your search results will be sorted based on your :ref:
402     `defaultSortField and defaultSortOrder <defaultsortfield-&-defaultsortorder-label>` 
403     system preferences values.
404
405 |image1330|
406
407 Under each title on your results list a series of values from your leader 
408 will appear. It is important to note that this has nothing to do with the 
409 item types or collection codes you have applied to your records, this data 
410 is all pulled from your fixed fields. This can be turned on or off with the 
411 :ref:`DisplayIconsXSLT <displayiconsxslt-label>` system preference.
412
413 At the bottom, under each record, there are more action links:
414
415 -  'Holds': brings you to that record's :ref:`'Holds' tab <placing-holds-in-staff-client-label>`.
416
417 -  'Request article': brings you to that record's :ref:`'Article requests' tab <article-requests-label>`.
418
419 -  'Edit record': brings you to that record's MARC framework for editing.
420
421 -  'Edit items': brings you to that record's item list for editing.
422
423 -  'OPAC view': brings you to that record's detail page in the OPAC.
424
425     **Note**
426
427     'OPAC view' needs the :ref:`OPACBaseURL <opacbaseurl-label>` system preference to 
428     be properly set.
429
430 To the right of each record are the holdings information and availability.
431
432     **Note**
433
434     Even if you filtered on one library location all locations that hold the item 
435     will appear on the search results.
436
437     **Important**
438
439     An item’s hold status doesn’t not affect whether or not the item is 'available' 
440     until the item is in 'waiting' status. Items with on-shelf holds will show as 
441     available until a librarian has pulled them from the shelf and checked the item 
442     in make it show 'waiting'.
443
444 .. _item-searching-label:
445
446 Item Searching
447 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
448
449 If you are looking for specific items you can use the item search engine
450 in the staff client to find them.
451
452 -  *Get there:* Search > Go to item search
453
454 At the top of the advanced search page in the staff client you will see
455 a link to 'Go to item search'
456
457 |image1313|
458
459 Clicking that link will open up a item specific search engine.
460
461 |image1314|
462
463 Using the search form that is presented you can find a list of specific
464 items that can be output to the screen or to a CSV file. If your results
465 are printed to the screen you will have the option to narrow your search
466 further using filters at the top.
467
468 |image1315|
469
470 .. _common-command-language-searching-label:
471
472 Common Command Language Searching
473 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
474
475 Koha uses the Common Command Language (CCL) (ISO 8777) as its internal
476 search protocol. Searches initiated in the graphical interface use this
477 protocol as well, although the searcher doesn't know which indexes,
478 operators and limiters are available and being used to conduct their
479 search. The searcher can use the Advanced Search when more precise
480 results set are desired and where the search indexes are somewhat known.
481 However, some library users and many library staff prefer using a
482 command based structure. This part of the document will present and
483 explain the use of the Koha command based structure. The indexes,
484 operators, and limiters used are identical to those used in the
485 graphical interface.
486
487 .. _indexes-label:
488
489 Indexes
490 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
491
492 The CCL standard itself doesn't specify a particular set of qualifiers
493 (indexes), but it does suggest a few short-hand notations such as 'ti',
494 'au', and 'su'. Koha has a default set of indexes; it's possible to
495 customize that set by adding needed indexes based on local requirements.
496 A qualifier (index) maps to a particular use-attribute within the Z39.50
497 BIB-1 attribute set. The complete Z39.50 Bib-1 Attribute can be viewed
498 at http://www.loc.gov/z3950/agency/defns/bib1.html.
499
500 The standard Koha set of indexes is a fairly common example of MARC21
501 indexing rules. The indexes that are defined in Koha are indexes
502 typically used by other integrated library systems. The defined Z39.50
503 Bib-1 Attribute mapped to the indexes include:
504
505 +--------------------------------+----------------------------+
506 | Bib-1 Attribute                | Qualifier (index)          |
507 +================================+============================+
508 | Personal-name                  | pn                         |
509 +--------------------------------+----------------------------+
510 | Corporate-name                 | cpn                        |
511 +--------------------------------+----------------------------+
512 | Conference-name                | cfn                        |
513 +--------------------------------+----------------------------+
514 | Title                          | ti                         |
515 +--------------------------------+----------------------------+
516 | Title-series                   | se                         |
517 +--------------------------------+----------------------------+
518 | Title-uniform                  | ut                         |
519 +--------------------------------+----------------------------+
520 | ISBN                           | nb                         |
521 +--------------------------------+----------------------------+
522 | ISSN                           | ns                         |
523 +--------------------------------+----------------------------+
524 | Local number                   | sn                         |
525 +--------------------------------+----------------------------+
526 | Local-classification           | lcn and callnum            |
527 +--------------------------------+----------------------------+
528 | Subject                        | su, su-to, su-geo, su-ut   |
529 +--------------------------------+----------------------------+
530 | Pubdate                        | yr,pubdate                 |
531 +--------------------------------+----------------------------+
532 | Date-of-Acquisition            | acqdate                    |
533 +--------------------------------+----------------------------+
534 | Language                       | ln                         |
535 +--------------------------------+----------------------------+
536 | Place-of-publication           | pl                         |
537 +--------------------------------+----------------------------+
538 | Abstract                       | ab                         |
539 +--------------------------------+----------------------------+
540 | Notes                          | nt                         |
541 +--------------------------------+----------------------------+
542 | Record-type                    | rtype, mc-rtype, mus       |
543 +--------------------------------+----------------------------+
544 | Author                         | au, aut                    |
545 +--------------------------------+----------------------------+
546 | Subject-person-name            | su-na                      |
547 +--------------------------------+----------------------------+
548 | Any (keyword)                  | kw                         |
549 +--------------------------------+----------------------------+
550 | Publisher                      | pb                         |
551 +--------------------------------+----------------------------+
552 | Content-type                   | ctype                      |
553 +--------------------------------+----------------------------+
554 | Koha-Auth-Number               | an                         |
555 +--------------------------------+----------------------------+
556 | Author-personal-bibliography   | aub                        |
557 +--------------------------------+----------------------------+
558 | Author-in-order                | auo                        |
559 +--------------------------------+----------------------------+
560
561 Table: Attributes
562
563 Refer to the :ref:`Koha Indexing Chart <koha-search-indexes-label>` for the MARC21
564 tags mapped to each Bib-1 Attribute and index combination.
565
566 .. _audience-examples-label:
567
568 Audience Examples
569 ''''''''''''''''''''''''''''''''''''''''
570
571 -  aud:a Preschool
572
573 -  aud:b Primary
574
575 -  aud:c Pre-Adolescent
576
577 -  aud:d Adolescent
578
579 -  aud:e Adult
580
581 -  aud:f Specialized
582
583 -  aud:g General
584
585 -  aud:j Juvenile
586
587 .. _contents-examples-label:
588
589 Contents Examples
590 '''''''''''''''''''''''''''''''''''''''''''''
591
592 -  fic:1 Fiction
593
594 -  fic:0 Non Fiction
595
596 -  bio:b Biography
597
598 -  mus:j Musical recording
599
600 -  mus:I Non musical record
601
602 .. _search-syntax-label:
603
604 Search Syntax
605 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
606
607 In the persistent search box, single words generally retrieve large
608 sets. To narrow a search, you can use multiple words. Koha automatically
609 uses the 'and' Boolean operator to create a set of records matching your
610 input. When you want to narrow the search to an author or a title or a
611 subject or some other specific field or use a Boolean operator, there
612 isn't an obvious way to accomplish that specificity. The library user
613 can, of course, go to the Advanced Search page; however, if you know how
614 to construct a CCL search, you can achieve more specificity while using
615 the persistent search box on any page.
616
617 There is a specific order to the CCL search syntax. Although it can be
618 used for simple searches, it is an especially effective way to perform
619 complex searches, as it affords you a great deal of control over your
620 search results. To construct a CCL search, first enter a desired index
621 code, then an equal sign, followed by your search word(s). Following are
622 examples of simple CCL searches.
623
624 -  ti=principles of accounting
625
626 -  au=brown joseph
627
628 -  su=poetry
629
630 -  su-na=Shakespeare
631
632 -  kw=marlin
633
634 You can refine your search by combining search terms with Boolean
635 operators 'and', 'or', or 'not'. Following are examples of searches
636 using Boolean operators.
637
638 -  ti=principles of accounting and au=brown joseph
639
640 -  su=poetry not su-na=Shakespeare
641
642 -  kw=communication and su=debate
643
644 You can also choose to search for things that start with a character or
645 series of characters
646
647 -  ti,first-in-subfield=C (will show you all titles that start with the
648    letter 'C')
649
650 Other string location searches can be performed with the following
651 keywords:
652
653 -  rtrn : right truncation
654
655 -  ltrn : left truncation
656
657 -  lrtrn : left and right truncation
658
659 -  st-date : type date
660
661 -  st-numeric : type number (integer)
662
663 -  ext : exact search on whole subfield (does not work with icu)
664
665 -  phr : search on phrase anywhere in the subfield
666
667 -  startswithnt : subfield starts with
668
669 Using specific indexes and Boolean operators are not the only way a
670 search can be refined. You can also refine your search as a phrase when
671 looking for a title, author, or subject. The syntax for this search is
672 *index,phr=search words*.
673
674 To illustrate the results of various search types, a search was done for
675 the words 'supreme court'. The results illustrate that the search index
676 and the word order make a difference in search results. Only the results
677 count and the search itself is in these examples. The search executed
678 will always be between the single quotes.
679
680 |image1049|
681
682 |image1050|
683
684 |image1051|
685
686 |image1052|
687
688 |image1053|
689
690 |image1054|
691
692 |image1055|
693
694 |image1056|
695
696 |image1057|
697
698 You can also choose to use limiters in your search query. Some common
699 limiters include dates, languages, record types, and item types. In the
700 Advance Search, you can either click a box or key in data to limit your
701 search. You can also apply the same limits with CCL by using the syntax
702 in the following examples. In all
703
704 *By Date: su=supreme court and yr,st-numeric=>2000*
705
706 |image1058|
707
708 When you limit by date, you can use the '>' (greater than), '<' (less
709 than), '=' (equal), or 'yyyy-yyyy' (range) symbols.
710
711 *By Item Type: su=nursing and itype:BK*
712
713 |image1059|
714
715 Each library will have a different set of item types defined in their
716 circulation configuration. When you set up item types, you define a code
717 and a name for each one. The name will appear on the Advance Search
718 page. The code you assigned is used as a CCL search limit, formatted as
719 'itype:x', where 'x' is the assigned code. The initial set of item types
720 in Koha will usually be edited to reflect your collections, so your item
721 type limiters may be different than the initial ones. The initial item
722 type limiters follow.
723
724 -  itype:BKS Books, Booklets, Workbooks
725
726 -  itype:SR Audio Cassettes, CDs
727
728 -  itype:IR Binders
729
730 -  itype:CF CD-ROMs, DVD-ROMs, General Online Resources
731
732 -  itype:VR DVDs, VHS
733
734 -  itype:KT Kit
735
736 -  itype:AR Models
737
738 -  itype:SER Serials
739
740 *By format: su=supreme court not l-format:sr*
741
742 |image1060|
743
744 The format limiters are derived from a combination of LDR, 006 and 007
745 positions. The formats that are currently defined are the following.
746
747 -  l-format:ta Regular print
748
749 -  l-format:tb Large print
750
751 -  l-format:fk Braille
752
753 -  l-format:sd CD audio
754
755 -  l-format:ss Cassette recording
756
757 -  l-format:vf VHS tape
758
759 -  l-format:vd DVD video
760
761 -  l-format:co CD software
762
763 -  l-format:cr Website
764
765 *By content type: su=supreme court not ctype:l*
766
767 |image1061|
768
769 The content types are taken from the 008 MARC tag, positions 24-27.
770
771 There are two other limiter types that are not described in this
772 document. They are: Audience and Content. The only difference in the
773 syntax of the CCL is the actual limiter. They are reproduced here just
774 in case you would like to use these limiters.
775
776 .. _koha-search-indexes-label:
777
778 Koha Search Indexes
779 --------------------------------------------
780
781 By default, not all fields are indexed in the Zebra search engine, but
782 many are. Below are the MARC21 fields that are indexed in Zebra.
783
784 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
785 | Field          | Description                                                                                                                                                                                                                                                                                                                                                                                                                        |
786 +================+====================================================================================================================================================================================================================================================================================================================================================================================================================================+
787 | Leader/06      | Record-type, rtype                                                                                                                                                                                                                                                                                                                                                                                                                 |
788 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
789 | Leader/07      | Bib-level                                                                                                                                                                                                                                                                                                                                                                                                                          |
790 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
791 | Leader/06-07   | Material-type                                                                                                                                                                                                                                                                                                                                                                                                                      |
792 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
793 | 001            | Control-number                                                                                                                                                                                                                                                                                                                                                                                                                     |
794 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
795 | 005            | Date/time-last-modified, dtlm, date-time-last-modified                                                                                                                                                                                                                                                                                                                                                                             |
796 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
797 | 007            | Microform-generation:n:range(data,11,1), Material-type,ff7-00:w:range(data,0,1), ff7-01:w:range(data,1,1), ff7-02:w:range(data,2,1), ff7-01-02:w:range(data,0,2)                                                                                                                                                                                                                                                                   |
798 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
799 | 008            | date-entered-on-file:n:range(data,0,5), date-entered-on-file:s:range(data,0,5), pubdate:w:range(data,7,4), pubdate:n:range(data,7,4), pubdate:y:range(data,7,4), pubdate:s:range(data,7,4), pl:w:range(data,15,3), ta:w:range(data,22,1), ff8-23:w:range(data,23,1), ff8-29:w:range(data,29,1), lf:w:range(data,33,1), bio:w:range(data,34,1), ln:n:range(data,35,3), ctype:w:range(data,24,4), Record-source:w:range(data,39,0)   |
800 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
801 | 010            | LC-card-number, Identifier-standard                                                                                                                                                                                                                                                                                                                                                                                                |
802 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
803 | 011            | LC-card-number, Identifier-standard                                                                                                                                                                                                                                                                                                                                                                                                |
804 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
805 | 015            | BNB-card-number, BGF-number, Number-db, Number-natl-biblio, Identifier-standard                                                                                                                                                                                                                                                                                                                                                    |
806 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
807 | 017            | Number-legal-deposit, Identifier-standard                                                                                                                                                                                                                                                                                                                                                                                          |
808 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
809 | 018            | Identifier-standard                                                                                                                                                                                                                                                                                                                                                                                                                |
810 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
811 | 020$a          | ISBN:w, Identifier-standard:w                                                                                                                                                                                                                                                                                                                                                                                                      |
812 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
813 | 020            | Identifier-standard                                                                                                                                                                                                                                                                                                                                                                                                                |
814 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
815 | 022$a          | ISSN:w, Identifier-standard:w                                                                                                                                                                                                                                                                                                                                                                                                      |
816 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
817 | 022            | Identifier-standard                                                                                                                                                                                                                                                                                                                                                                                                                |
818 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
819 | 023            | Identifier-standard                                                                                                                                                                                                                                                                                                                                                                                                                |
820 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
821 | 024$a          | Identifier-other                                                                                                                                                                                                                                                                                                                                                                                                                   |
822 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
823 | 024            | Identifier-standard                                                                                                                                                                                                                                                                                                                                                                                                                |
824 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
825 | 025            | Identifier-standard                                                                                                                                                                                                                                                                                                                                                                                                                |
826 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
827 | 027            | Report-number, Identifier-standard                                                                                                                                                                                                                                                                                                                                                                                                 |
828 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
829 | 028            | Number-music-publisher, Identifier-standard                                                                                                                                                                                                                                                                                                                                                                                        |
830 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
831 | 030            | CODEN, Identifier-standard                                                                                                                                                                                                                                                                                                                                                                                                         |
832 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
833 | 034            | Map-scale                                                                                                                                                                                                                                                                                                                                                                                                                          |
834 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
835 | 035            | Other-control-number                                                                                                                                                                                                                                                                                                                                                                                                               |
836 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
837 | 037            | Identifier-standard, Stock-number                                                                                                                                                                                                                                                                                                                                                                                                  |
838 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
839 | 040            | Code-institution, Record-source                                                                                                                                                                                                                                                                                                                                                                                                    |
840 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
841 | 041$a          | ln-audio                                                                                                                                                                                                                                                                                                                                                                                                                           |
842 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
843 | 041$h          | language-original                                                                                                                                                                                                                                                                                                                                                                                                                  |
844 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
845 | 041$j          | ln-subtitle                                                                                                                                                                                                                                                                                                                                                                                                                        |
846 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
847 | 041            | ln                                                                                                                                                                                                                                                                                                                                                                                                                                 |
848 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
849 | 043            | Code-geographic                                                                                                                                                                                                                                                                                                                                                                                                                    |
850 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
851 | 050$b          | LC-call-number:w, LC-call-number:p, LC-call-number:s                                                                                                                                                                                                                                                                                                                                                                               |
852 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
853 | 050            | LC-call-number:w, LC-call-number:p, LC-call-number:s                                                                                                                                                                                                                                                                                                                                                                               |
854 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
855 | 052            | Geographic-class                                                                                                                                                                                                                                                                                                                                                                                                                   |
856 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
857 | 060            | NLM-call-number                                                                                                                                                                                                                                                                                                                                                                                                                    |
858 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
859 | 070            | NAL-call-number                                                                                                                                                                                                                                                                                                                                                                                                                    |
860 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
861 | 080            | UDC-classification                                                                                                                                                                                                                                                                                                                                                                                                                 |
862 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
863 | 082            | Dewey-classification:w, Dewey-classification:s                                                                                                                                                                                                                                                                                                                                                                                     |
864 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
865 | 086            | Number-govt-pub                                                                                                                                                                                                                                                                                                                                                                                                                    |
866 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
867 | 100$9          | Cross-Reference:w, Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                |
868 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
869 | 100$a          | Author,Author:p, Author:s, Editor, Author-personal-bibliography, Author-personal-bibliography:p, Author-personal-bibliography:s                                                                                                                                                                                                                                                                                                    |
870 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
871 | 100            | Author, Author-title, Author-name-personal, Name, Name-and-title, Personal-name                                                                                                                                                                                                                                                                                                                                                    |
872 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
873 | 110$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
874 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
875 | 110            | Author, Author-title, Author-name-corporate, Name, Name-and-title, Corporate-name                                                                                                                                                                                                                                                                                                                                                  |
876 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
877 | 111$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
878 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
879 | 111            | Author, Author-title, Author-name-corporate, Name, Name-and-title, Conference-name                                                                                                                                                                                                                                                                                                                                                 |
880 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
881 | 130$n          | Thematic-number                                                                                                                                                                                                                                                                                                                                                                                                                    |
882 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
883 | 130$r          | Music-key                                                                                                                                                                                                                                                                                                                                                                                                                          |
884 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
885 | 130$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
886 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
887 | 130            | Title, Title-uniform                                                                                                                                                                                                                                                                                                                                                                                                               |
888 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
889 | 210            | Title, Title-abbreviated                                                                                                                                                                                                                                                                                                                                                                                                           |
890 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
891 | 211            | Title, Title-abbreviated                                                                                                                                                                                                                                                                                                                                                                                                           |
892 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
893 | 212            | Title, Title-other-variant                                                                                                                                                                                                                                                                                                                                                                                                         |
894 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
895 | 214            | Title, Title-expanded                                                                                                                                                                                                                                                                                                                                                                                                              |
896 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
897 | 222            | Title, Title-key                                                                                                                                                                                                                                                                                                                                                                                                                   |
898 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
899 | 240$r          | Music-key                                                                                                                                                                                                                                                                                                                                                                                                                          |
900 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
901 | 240$n          | Thematic-number                                                                                                                                                                                                                                                                                                                                                                                                                    |
902 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
903 | 240            | Title:w, Title:p, Title-uniform                                                                                                                                                                                                                                                                                                                                                                                                    |
904 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
905 | 243$n          | Thematic-number                                                                                                                                                                                                                                                                                                                                                                                                                    |
906 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
907 | 243$r          | Music-key                                                                                                                                                                                                                                                                                                                                                                                                                          |
908 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
909 | 243            | Title:w, Title:p, Title-collective                                                                                                                                                                                                                                                                                                                                                                                                 |
910 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
911 | 245$a          | Title-cover:w, Title-cover:p, Title-cover:s, Title:w, Title:p, Title:s                                                                                                                                                                                                                                                                                                                                                             |
912 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
913 | 245$c          | Author, Author-in-order:w, Author-in-order:p, Author-in-order:s                                                                                                                                                                                                                                                                                                                                                                    |
914 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
915 | 245$9          | Cross-Reference:w, Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                |
916 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
917 | 245            | Title:w, Title:p                                                                                                                                                                                                                                                                                                                                                                                                                   |
918 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
919 | 246            | Title, Title:p, Title-abbreviated, Title-expanded, Title-former                                                                                                                                                                                                                                                                                                                                                                    |
920 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
921 | 247            | Title, Title:p, Title-former, Title-other-variant, Related-periodical                                                                                                                                                                                                                                                                                                                                                              |
922 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
923 | 260$a          | pl:w, pl:p                                                                                                                                                                                                                                                                                                                                                                                                                         |
924 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
925 | 260$b          | Publisher:w, Publisher:p                                                                                                                                                                                                                                                                                                                                                                                                           |
926 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
927 | 260$c          | copydate, copydate:s                                                                                                                                                                                                                                                                                                                                                                                                               |
928 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
929 | 260            | Provider, pl                                                                                                                                                                                                                                                                                                                                                                                                                       |
930 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
931 | 264            | Provider                                                                                                                                                                                                                                                                                                                                                                                                                           |
932 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
933 | 300            | Extent:w, Extent:p                                                                                                                                                                                                                                                                                                                                                                                                                 |
934 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
935 | 400$a          | Name-and-title                                                                                                                                                                                                                                                                                                                                                                                                                     |
936 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
937 | 400$t          | Author-title, Name-and-title, Title, Title-series                                                                                                                                                                                                                                                                                                                                                                                  |
938 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
939 | 400$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
940 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
941 | 400            | Author, Author-name-personal, Name, Personal-name                                                                                                                                                                                                                                                                                                                                                                                  |
942 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
943 | 410            | Author, Corporate-name                                                                                                                                                                                                                                                                                                                                                                                                             |
944 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
945 | 410$a          | Name-and-title                                                                                                                                                                                                                                                                                                                                                                                                                     |
946 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
947 | 410$t          | Author-title, Title, Title-series                                                                                                                                                                                                                                                                                                                                                                                                  |
948 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
949 | 410$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
950 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
951 | 410            | Author-name-corporate, Name                                                                                                                                                                                                                                                                                                                                                                                                        |
952 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
953 | 411            | Author, Conference-name                                                                                                                                                                                                                                                                                                                                                                                                            |
954 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
955 | 411$a          | Name-and-title                                                                                                                                                                                                                                                                                                                                                                                                                     |
956 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
957 | 411$t          | Author-title, Title-series                                                                                                                                                                                                                                                                                                                                                                                                         |
958 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
959 | 411            | Author-name-corporate, Name                                                                                                                                                                                                                                                                                                                                                                                                        |
960 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
961 | 440$a          | Title-series:w, Title-series:p                                                                                                                                                                                                                                                                                                                                                                                                     |
962 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
963 | 440$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
964 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
965 | 440            | Title-series:w, Title-series:p, Title, Title-series                                                                                                                                                                                                                                                                                                                                                                                |
966 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
967 | 490$a          | Title-series:w, Title-series:p                                                                                                                                                                                                                                                                                                                                                                                                     |
968 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
969 | 490            | Title, Title-series                                                                                                                                                                                                                                                                                                                                                                                                                |
970 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
971 | 490$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
972 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
973 | 500            | Note:w, Note:p                                                                                                                                                                                                                                                                                                                                                                                                                     |
974 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
975 | 502            | Material-type                                                                                                                                                                                                                                                                                                                                                                                                                      |
976 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
977 | 505$r          | Author                                                                                                                                                                                                                                                                                                                                                                                                                             |
978 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
979 | 505$t          | Title                                                                                                                                                                                                                                                                                                                                                                                                                              |
980 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
981 | 505            | Note:w, Note:p                                                                                                                                                                                                                                                                                                                                                                                                                     |
982 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
983 | 510            | Indexed-by                                                                                                                                                                                                                                                                                                                                                                                                                         |
984 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
985 | 520            | Abstract:w, Abstract:p                                                                                                                                                                                                                                                                                                                                                                                                             |
986 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
987 | 521$a          | lex:n                                                                                                                                                                                                                                                                                                                                                                                                                              |
988 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
989 | 526$c          | arl, arl:n                                                                                                                                                                                                                                                                                                                                                                                                                         |
990 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
991 | 526$d          | arp, arp:n                                                                                                                                                                                                                                                                                                                                                                                                                         |
992 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
993 | 590            | Note:w, Note:p                                                                                                                                                                                                                                                                                                                                                                                                                     |
994 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
995 | 600$a          | Name-and-title, Name, Personal-name, Subject-name-personal, Subject                                                                                                                                                                                                                                                                                                                                                                |
996 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
997 | 600$t          | Name-and-title, Title, Subject                                                                                                                                                                                                                                                                                                                                                                                                     |
998 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
999 | 600$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
1000 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1001 | 600            | Name, Personal-name, Subject-name-personal, Subject                                                                                                                                                                                                                                                                                                                                                                                |
1002 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1003 | 610$a          | Name-and-title                                                                                                                                                                                                                                                                                                                                                                                                                     |
1004 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1005 | 610$t          | Name-and-title, Title                                                                                                                                                                                                                                                                                                                                                                                                              |
1006 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1007 | 610$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
1008 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1009 | 610            | Name, Subject, Corporate-name                                                                                                                                                                                                                                                                                                                                                                                                      |
1010 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1011 | 611            | Conference-name                                                                                                                                                                                                                                                                                                                                                                                                                    |
1012 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1013 | 611$a          | Name-and-title                                                                                                                                                                                                                                                                                                                                                                                                                     |
1014 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1015 | 611$t          | Name-and-title, Title                                                                                                                                                                                                                                                                                                                                                                                                              |
1016 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1017 | 611$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
1018 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1019 | 611            | Name, Subject                                                                                                                                                                                                                                                                                                                                                                                                                      |
1020 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1021 | 630$n          | Thematic-number                                                                                                                                                                                                                                                                                                                                                                                                                    |
1022 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1023 | 630$r          | Music-key                                                                                                                                                                                                                                                                                                                                                                                                                          |
1024 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1025 | 630$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
1026 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1027 | 630            | Subject                                                                                                                                                                                                                                                                                                                                                                                                                            |
1028 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1029 | 650$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
1030 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1031 | 650            | Subject, Subject:p                                                                                                                                                                                                                                                                                                                                                                                                                 |
1032 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1033 | 651$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
1034 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1035 | 651            | Name-geographic, Subject,Subject:p                                                                                                                                                                                                                                                                                                                                                                                                 |
1036 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1037 | 652$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
1038 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1039 | 653$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
1040 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1041 | 653            | Subject, Subject:p                                                                                                                                                                                                                                                                                                                                                                                                                 |
1042 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1043 | 654$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
1044 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1045 | 654            | Subject                                                                                                                                                                                                                                                                                                                                                                                                                            |
1046 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1047 | 655$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
1048 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1049 | 655            | Subject                                                                                                                                                                                                                                                                                                                                                                                                                            |
1050 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1051 | 656$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
1052 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1053 | 656            | Subject                                                                                                                                                                                                                                                                                                                                                                                                                            |
1054 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1055 | 657$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
1056 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1057 | 657            | Subject                                                                                                                                                                                                                                                                                                                                                                                                                            |
1058 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1059 | 690$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
1060 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1061 | 690            | Subject, Subject:p                                                                                                                                                                                                                                                                                                                                                                                                                 |
1062 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1063 | 700$9          | Cross-Reference, Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                  |
1064 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1065 | 700$a          | Author, Author:p                                                                                                                                                                                                                                                                                                                                                                                                                   |
1066 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1067 | 700$n          | Thematic-number                                                                                                                                                                                                                                                                                                                                                                                                                    |
1068 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1069 | 700$r          | Music-key                                                                                                                                                                                                                                                                                                                                                                                                                          |
1070 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1071 | 700$t          | Author-title, Name-and-title, Title, Title-uniform                                                                                                                                                                                                                                                                                                                                                                                 |
1072 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1073 | 700            | Author, Author-name-corporate, Author-name-personal, Name, Editor, Personal-name                                                                                                                                                                                                                                                                                                                                                   |
1074 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1075 | 710            | Author, Corporate-name                                                                                                                                                                                                                                                                                                                                                                                                             |
1076 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1077 | 710$t          | Author-title, Name-and-title, Title, Title-uniform                                                                                                                                                                                                                                                                                                                                                                                 |
1078 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1079 | 710$a          | Name-and-title                                                                                                                                                                                                                                                                                                                                                                                                                     |
1080 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1081 | 710$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
1082 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1083 | 710            | Author, Name                                                                                                                                                                                                                                                                                                                                                                                                                       |
1084 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1085 | 711$a          | Name-and-title                                                                                                                                                                                                                                                                                                                                                                                                                     |
1086 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1087 | 711$t          | Author-title, Title, Title-uniform                                                                                                                                                                                                                                                                                                                                                                                                 |
1088 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1089 | 711$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
1090 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1091 | 711            | Author-name-corporate, Name, Conference-name                                                                                                                                                                                                                                                                                                                                                                                       |
1092 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1093 | 730$n          | Thematic-number                                                                                                                                                                                                                                                                                                                                                                                                                    |
1094 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1095 | 730$r          | Music-key                                                                                                                                                                                                                                                                                                                                                                                                                          |
1096 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1097 | 730$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
1098 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1099 | 730            | Title, Title-uniform                                                                                                                                                                                                                                                                                                                                                                                                               |
1100 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1101 | 740            | Title, Title-other-variant                                                                                                                                                                                                                                                                                                                                                                                                         |
1102 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1103 | 773$t          | Host-item                                                                                                                                                                                                                                                                                                                                                                                                                          |
1104 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1105 | 780$t          | Title                                                                                                                                                                                                                                                                                                                                                                                                                              |
1106 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1107 | 780$w          | Record-control-number                                                                                                                                                                                                                                                                                                                                                                                                              |
1108 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1109 | 780            | Title, Title-former, Related-periodical                                                                                                                                                                                                                                                                                                                                                                                            |
1110 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1111 | 785$w          | Record-control-number                                                                                                                                                                                                                                                                                                                                                                                                              |
1112 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1113 | 785            | Related-periodical                                                                                                                                                                                                                                                                                                                                                                                                                 |
1114 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1115 | 787$w          | Record-control-number                                                                                                                                                                                                                                                                                                                                                                                                              |
1116 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1117 | 800$a          | Name-and-title                                                                                                                                                                                                                                                                                                                                                                                                                     |
1118 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1119 | 800$t          | Author-title, Name-and-title, Title, Title-series                                                                                                                                                                                                                                                                                                                                                                                  |
1120 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1121 | 800$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
1122 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1123 | 800            | Author, Author-name-personal, Name, Personal-name                                                                                                                                                                                                                                                                                                                                                                                  |
1124 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1125 | 810$a          | Name-and-title                                                                                                                                                                                                                                                                                                                                                                                                                     |
1126 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1127 | 810$t          | Author-title, Name-and-title, Title, Title-series                                                                                                                                                                                                                                                                                                                                                                                  |
1128 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1129 | 810$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
1130 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1131 | 810            | Author, Corporate-name, Author-name-corporate, Name                                                                                                                                                                                                                                                                                                                                                                                |
1132 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1133 | 811$a          | Name-and-title                                                                                                                                                                                                                                                                                                                                                                                                                     |
1134 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1135 | 811$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
1136 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1137 | 811$t          | Author-title, Name-and-title, Title, Title-series                                                                                                                                                                                                                                                                                                                                                                                  |
1138 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1139 | 811            | Author, Author-name-corporate, Name, Conference-name                                                                                                                                                                                                                                                                                                                                                                               |
1140 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1141 | 830$9          | Koha-Auth-Number                                                                                                                                                                                                                                                                                                                                                                                                                   |
1142 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1143 | 830            | Title, Title-series                                                                                                                                                                                                                                                                                                                                                                                                                |
1144 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1145 | 840            | Title, Title-series                                                                                                                                                                                                                                                                                                                                                                                                                |
1146 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1147 | 942$0          | totalissues:n, totalissues:s                                                                                                                                                                                                                                                                                                                                                                                                       |
1148 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1149 | 942$2          | cn-bib-source                                                                                                                                                                                                                                                                                                                                                                                                                      |
1150 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1151 | 942$6          | cn-bib-sort:n, cn-bib-sort:s                                                                                                                                                                                                                                                                                                                                                                                                       |
1152 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1153 | 942$c          | itemtype:w                                                                                                                                                                                                                                                                                                                                                                                                                         |
1154 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1155 | 942$n          | Suppress:w, Suppress:n                                                                                                                                                                                                                                                                                                                                                                                                             |
1156 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1157 | 942$h          | cn-class                                                                                                                                                                                                                                                                                                                                                                                                                           |
1158 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1159 | 942$i          | cn-item                                                                                                                                                                                                                                                                                                                                                                                                                            |
1160 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1161 | 942$k          | cn-prefix                                                                                                                                                                                                                                                                                                                                                                                                                          |
1162 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1163 | 942$m          | cn-suffix                                                                                                                                                                                                                                                                                                                                                                                                                          |
1164 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1165 | 952$0          | withdrawn:n, withdrawn:w                                                                                                                                                                                                                                                                                                                                                                                                           |
1166 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1167 | 952$1          | lost, lost:n                                                                                                                                                                                                                                                                                                                                                                                                                       |
1168 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1169 | 952$2          | classification-source                                                                                                                                                                                                                                                                                                                                                                                                              |
1170 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1171 | 952$3          | materials-specified                                                                                                                                                                                                                                                                                                                                                                                                                |
1172 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1173 | 952$4          | damaged:n, damaged:w                                                                                                                                                                                                                                                                                                                                                                                                               |
1174 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1175 | 952$5          | restricted:n, restricted:w                                                                                                                                                                                                                                                                                                                                                                                                         |
1176 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1177 | 952$6          | cn-sort:n, cn-sort:s                                                                                                                                                                                                                                                                                                                                                                                                               |
1178 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1179 | 952$7          | notforloan:n, notforloan:w                                                                                                                                                                                                                                                                                                                                                                                                         |
1180 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1181 | 952$8          | ccode                                                                                                                                                                                                                                                                                                                                                                                                                              |
1182 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1183 | 952$9          | itemnumber:n, itemnumber:s                                                                                                                                                                                                                                                                                                                                                                                                         |
1184 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1185 | 952$a          | homebranch                                                                                                                                                                                                                                                                                                                                                                                                                         |
1186 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1187 | 952$b          | holdingbranch                                                                                                                                                                                                                                                                                                                                                                                                                      |
1188 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1189 | 952$c          | location                                                                                                                                                                                                                                                                                                                                                                                                                           |
1190 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1191 | 952$d          | Date-of-acquisition, Date-of-acquisition:d, Date-of-acquisition:s                                                                                                                                                                                                                                                                                                                                                                  |
1192 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1193 | 952$e          | acqsource                                                                                                                                                                                                                                                                                                                                                                                                                          |
1194 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1195 | 952$f          | coded-location-qualifier                                                                                                                                                                                                                                                                                                                                                                                                           |
1196 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1197 | 952$g          | price                                                                                                                                                                                                                                                                                                                                                                                                                              |
1198 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1199 | 952$j          | stack:n, stack:w                                                                                                                                                                                                                                                                                                                                                                                                                   |
1200 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1201 | 952$l          | issues:n, issues:w, issues:s                                                                                                                                                                                                                                                                                                                                                                                                       |
1202 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1203 | 952$m          | renewals:n, renewals:w                                                                                                                                                                                                                                                                                                                                                                                                             |
1204 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1205 | 952$n          | reserves:n, reserves:w                                                                                                                                                                                                                                                                                                                                                                                                             |
1206 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1207 | 952$o          | Local-classification:w, Local-classification:p, Local-classification:s                                                                                                                                                                                                                                                                                                                                                             |
1208 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1209 | 952$p          | barcode, barcode:n                                                                                                                                                                                                                                                                                                                                                                                                                 |
1210 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1211 | 952$q          | onloan:n, onloan:w                                                                                                                                                                                                                                                                                                                                                                                                                 |
1212 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1213 | 952$r          | datelastseen                                                                                                                                                                                                                                                                                                                                                                                                                       |
1214 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1215 | 952$s          | datelastborrowed                                                                                                                                                                                                                                                                                                                                                                                                                   |
1216 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1217 | 952$t          | copynumber                                                                                                                                                                                                                                                                                                                                                                                                                         |
1218 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1219 | 952$u          | uri:u                                                                                                                                                                                                                                                                                                                                                                                                                              |
1220 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1221 | 952$v          | replacementprice                                                                                                                                                                                                                                                                                                                                                                                                                   |
1222 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1223 | 952$w          | replacementpricedate                                                                                                                                                                                                                                                                                                                                                                                                               |
1224 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1225 | 952$y          | itype:w                                                                                                                                                                                                                                                                                                                                                                                                                            |
1226 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1227 | 952$z          | Note:w, Note:p                                                                                                                                                                                                                                                                                                                                                                                                                     |
1228 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1229 | 999$c          | Local-Number:n, Local-Number:w, Local-Number:s                                                                                                                                                                                                                                                                                                                                                                                     |
1230 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1231 | 999$d          | biblioitemnumber:n, biblioitemnumber:w, biblioitemnumber:s                                                                                                                                                                                                                                                                                                                                                                         |
1232 +----------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1233
1234 Table: Indexes