Thanks Chris! Glad to know I'm doing this the best/recommended way. i'm refreshing my linux skills and also having to learn about library systems and it takes me a bit. For a limit of 5 records the file I downloaded with the query results was 183 lines so it looks like it may have run OK. here is an example of 1 row: "<?xml version=""1.0"" encoding=""UTF-8""?> <record xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" xsi:schemaLocation=""http://www.loc.gov/MARC21/slim http://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd"" xmlns=""http://www.loc.gov/MARC21/slim""> <leader>00366nam a2200157Ia 4500</leader> <controlfield tag=""003"">OSt</controlfield> <controlfield tag=""005"">20120402152703.0</controlfield> <controlfield tag=""008"">080903s9999 xx 000 0 und d</controlfield> <datafield tag=""020"" ind1="" "" ind2="" ""> <subfield code=""a"">0020442009</subfield> </datafield> <datafield tag=""040"" ind1="" "" ind2="" ""> <subfield code=""c"">Bri</subfield> </datafield> <datafield tag=""100"" ind1="" "" ind2="" ""> <subfield code=""a"">Lewis, C. S.</subfield> </datafield> <datafield tag=""245"" ind1="" "" ind2="" ""> <subfield code=""a"">The Chronicles of Narnia: The Horse and His Boy</subfield> </datafield> <datafield tag=""650"" ind1="" "" ind2="" ""> <subfield code=""a"">Fantastic fiction.</subfield> </datafield> <datafield tag=""650"" ind1="" "" ind2="" ""> <subfield code=""a"">Fantasy.</subfield> </datafield> <datafield tag=""942"" ind1="" "" ind2="" ""> <subfield code=""c"">BOOK</subfield> </datafield> <datafield tag=""999"" ind1="" "" ind2="" ""> <subfield code=""c"">2</subfield> <subfield code=""d"">2</subfield> </datafield> </record> " Any other ideas on what to check? Josh On Mon, Jul 30, 2012 at 10:03 PM, Chris Cormack <chris@bigballofwax.co.nz>wrote:
Hi Chris,
When I imported our database into the 3.6.4 system at the time I ran the following: koha-upgrade-schema <instancename> then koha-uprade-to-3.4 <instancename>
When I ran the 2nd command, the koha-upgrade-to-3.4 command kept returning a bunch of "Use of uninitialized value in pattern match (m//) at /usr/share/koha/lib/C4/Biblio.pm line 2953" . I asked and was told I could safely ignore those errors from the upgrade command.
I actually install KOHA using the apt-get packages on Debian. I've used
On 31 July 2012 16:59, Josh Mikow <joshmikow@gmail.com> wrote: that
to keep it up to date and apply patches as they come out.
Cool, it is by far the easiest way to run Koha.
Do I need to try to re-run the upgrade to 3.4 or check any specific logs?
What you can do is in your report writer, write a report that does
SELECT marcxml FROM biblioitems limit 5
That will get you 5 records, you can look at your marcxml and if it has 952 fields in it, the fields were not removed.
Chris