Please do not send to both koha and koha-devel lists. Pick one or the other. In this case, this is not a development question, so the main koha list is appropriate. <br><br>Your problem is common and is typically causes by improper record data. As a practical matter, you can split out the last 1000 records and treat them separately. Try analyzing the problem record(s) with MarcEdit or the MARC::Lint module. <br>
<br>Here is a sample script you can use:<br><br><div style="margin-left: 40px;">#!/usr/bin/perl<br>#<br><br>use warnings;<br>use strict;<br><br>use MARC::File::USMARC;<br>use MARC::Lint;<br><br>my $lint = new MARC::Lint;<br>
my $filename = shift;<br><br>my $i = 0;<br>my $file = MARC::File::USMARC->in( $filename );<br>while ( my $marc = $file->next() ) {<br> $lint->check_record( $marc );<br> $lint->warnings or next;<br> printf "(title %03d:) %s\n", ++$i, $marc->title;<br>
print join("\n", $lint->warnings), "\n";<br>}<br></div><br>Execute the script with one argument: the filename of the file containing your problem record(s). <br><br>-- <br>Joe Atzberger<br>LibLime - Open Source Library Solutions<br>
<br><div class="gmail_quote">On Mon, Jul 20, 2009 at 5:42 AM, Z. Iqbal <span dir="ltr"><<a href="mailto:zahidiqbal_isb@yahoo.com">zahidiqbal_isb@yahoo.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>
hi<br>
i am working on koha3 with debian 5.<br>
i have imported about 68000 marc records through koha3 interface(staged,then<br>
import) with small files about 100 marc record in each file<br>
and zebra services have been working properly.<br>
the problem arises when i imported 69000 marc record the zebra service get<br>
stop and after 68000 record, no records have been search by zebra.<br>
can any one have the same problem.<br>
i donot know what to do?<br>
regards,<br>
z.iqbal<font color="#888888"><br></font></blockquote></div><br>