[ List Archives Home ] [ Thread index for 2008 ] [ Date index for 2008 ] [ Author index for 2008 ]


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
I use the same steps as Christopher does, except for the format which I
use 'tab' for #1 and 'none' for #2

1) Create your list (review file)
2) U > Output USER-selected format
3) C > CREATE a new file for output


                                 RECORD FORMAT
1 > Field
Delimiter......................................................... 9
2 > Text
Qualifier....................................................... none
3 > Repeated Field
Delimiter................................................ ;
4 > Maximum Field
Length................................................. None

4) Then, FTP the file and make sure to change the exertion to '.txt'.
This way you can open the file in any MS product such as Word, Excel, or
Access.


I hope this help.

Akram Zouroufchi
Health Sciences Library
University of Washington



-----Original Message-----
From: innopac-admin@xxxxxxxxxx
[mailto:innopac-admin@xxxxxxxxxx] On Behalf Of
innopac-request@xxxxxxxxxx
Sent: Wednesday, May 29, 2002 5:02 AM
To: innopac@xxxxxxxxxx
Subject: INNOPAC digest, Vol 1 #328 - 16 msgs


Send INNOPAC mailing list submissions to
	innopac@xxxxxxxxxx

To subscribe or unsubscribe via the World Wide Web, visit
	http://innopacusers.org/list/listinfo/innopac
or, via email, send a message with subject or body 'help' to
	innopac-request@xxxxxxxxxx

You can reach the person managing the list at
	innopac-admin@xxxxxxxxxx

When replying, please edit your Subject line so it is more specific than
"Re: Contents of INNOPAC digest..."


Today's Topics:

   1. RE: course reserve create list (Sally Conard)
   2. RE: course reserve create list (Amanda B. Hurst)
   3. export create list to Access (Fred_Sweet@xxxxxxxxxx)
   4. Re: AVS no hits javascript (James Campbell)
   5. RE: Self-Check Users (Dannis Mitchell)
   6. RE: export create list to Access (Christopher C. Brown)
   7. Acquisitions Librarian (Franklin, Tennessee) (Kathy Ossi)
   8. missing issues (beehler@xxxxxxxxxx)
   9. ejm - E-journal management (John Wynstra)
  10. EJM - The problem and an approach (John Wynstra)
  11. re photo ID (Pamela Quatse)
  12. Re: EJM - another part of the problem (Penny Swanson)
  13. EJM - Other aspects to The problem (Mark H. Kibbey)
  14. Re: Proxy Rewrite Method (Raye Lynn Thomas)
  15. transferring records in Millenium (Laure Chrisman)
  16. RE: transferring records in Millenium (CSeeman@xxxxxxxxxx)

--__--__--

Message: 1
Date: Tue, 28 May 2002 11:01:03 -0500
From: "Sally Conard" <CONARDSA@xxxxxxxxxx>
To: <innopac@xxxxxxxxxx>
Subject: RE: course reserve create list
Reply-To: innopac@xxxxxxxxxx

We run lists by location as well but what Rhonda is asking is about
running a list of items on "course reserve."  That is a separate thing
from location I think.

Sally

--__--__--

Message: 2
Subject: RE: course reserve create list
Date: Tue, 28 May 2002 12:14:14 -0400
From: "Amanda B. Hurst" <ahurst@xxxxxxxxxx>
To: <innopac@xxxxxxxxxx>
Reply-To: innopac@xxxxxxxxxx

I may not be sure what you are saying exactly, but we have a separate =
location code for course reserves and at the end of the semester after =
everything has been taken off of reserve, we would run another list to =
ensure there aren't any stray items that have been left on reserve.  =
Does this make sense?  This is how we might go about identifying items =
that for some reason or another were not taken off of reserve, or we =
might choose to do this in the middle of a semester to see exactly what
= is on reserve.  Another option we sometimes use is to run a course
list = based on their begin date, and end date, since we do assign
specific end = dates, and beginning dates at the start of each new
semester.  I hope = this answers your questions about how I was
interpreting her question. =20

Thanks,
Amanda =20

-----Original Message-----
From: Sally Conard [mailto:CONARDSA@xxxxxxxxxx]
Sent: Tuesday, May 28, 2002 12:01 PM
To: innopac@xxxxxxxxxx
Subject: RE: course reserve create list


We run lists by location as well but what Rhonda is asking is about
running a list of items on "course reserve."  That is a separate thing
from location I think.

Sally
--
This message was distributed through the Innovative Users Group INNOPAC
= list Public replies:  INNOPAC@xxxxxxxxxx Update your
subscription options: = http://innopacusers.org/list/listinfo/innopac

--__--__--

Message: 3
Subject: export create list to Access
To: innopac@xxxxxxxxxx
From: Fred_Sweet@xxxxxxxxxx
Date: Tue, 28 May 2002 12:18:58 -0400
Reply-To: innopac@xxxxxxxxxx


I've done it before but can't remember the steps--- Can someone tell me
how to export a create list into an Access table? (Or where to find
directions for the same). Thanks.

Fred Sweet
Theological and Reference Librarian
Miller Library at Cornerstone University
Grand Rapids, MI 49525

(616) 949-5300 ext 1362


--__--__--

Message: 4
Date: Tue, 28 May 2002 13:24:17 -0400
From: James Campbell <James.Campbell@xxxxxxxxxx>
To: innopac@xxxxxxxxxx
Subject: Re: AVS no hits javascript
Reply-To: innopac@xxxxxxxxxx

Thanks to Hardy Pottinger.   This is gold to Inn-Reach scope sites
passing zero hits to non scope Central Catalogs.



"Pottinger, Hardy J." wrote:

> Hi, Jim. We're just now implementing this, but will probably be adding

> similar code in all of our WebPACs down the road. Here's the code that

> I'm currently using. You can see a working demo at 
> http://laurel.lso.missouri.edu/search~/X
>
> Note that this code does not use the string.replace method, which 
> requires JavaScript 1.2 (4.0 browsers or higher). So, it's a little 
> longer than the examples that can be found elsewhere, but it should 
> work with *any* JavaScript-capable browser.
>
> Put this code directly after the <!--{msg}--> token on your AVS form.
>
> <!-- begin code snippet -->
>
> <script language="JavaScript">
>
> <!-- hide from older browsers
>
> /*
> replace function from http://tech.irt.org/articles/js037/index.htm#3
> */
> function replace(string,text,by) {
> // Replaces text with by in string
>     var strLength = string.length, txtLength = text.length;
>     if ((strLength == 0) || (txtLength == 0)) return string;
>
>     var i = string.indexOf(text);
>     if ((!i) && (text != string.substring(0,txtLength))) return
string;
>     if (i == -1) return string;
>
>     var newstr = string.substring(0,i) + by;
>
>     if (i+txtLength < strLength)
>         newstr += 
> replace(string.substring(i+txtLength,strLength),text,by);
>
>     return newstr;
> }
>
> function killScope(string) {
>     var out = "&searchscope="; // replace this
>     var temp = "" + string; // temporary holder
>     var theBeginning = ""; // beginning of the string
>     var theRest = ""; // end of the string
>
>     var pos = temp.indexOf(out);
>     theBeginning = "" + temp.substring(0, pos) + "";
>     theRest = temp.substring((pos + out.length), temp.length);
>
>     // as long as the character at the beginning of theRest is a
number, delete it
>     var firstChar = theRest.charAt(0);
>     while ( firstChar >= "0" && firstChar <= "9" ) {
>         theRest = theRest.substring(1);
>         firstChar = theRest.charAt(0);
>     }
>
>     temp = theBeginning + theRest;
>
>     return temp;
>
> }
>
>    var cURL=location.href;
>    var cOLD="laurel.lso.missouri.edu";
>    var cNEW="mobius.missouri.edu";
>    var cSRCH=cURL.indexOf("=");
>    var cIP="207.160.154.35";
>    var FinalURL= replace(cURL,cOLD,cNEW);
>    FinalURL= replace(FinalURL,cIP,cNEW); // so this will work with IPs
as well as URLs
>    FinalURL= killScope(FinalURL); // drop the scope because INNReach
doesn't like scopes
>    FinalURL= replace(FinalURL,"NOSRCH","SEARCH"); // the modify search

> screen doesn't make sense without this if (cSRCH != -1) {
>    document.write(' repeat search in the <a href="' + FinalURL + 
> '"><img src="/screens/but25.gif" border="0" alt=" MOBIUS Union Catalog

> "></a><p>'); }
>
> // -->
>
> </script>
>
> <!-- end code snippet -->
>
> ----------------------------------------
> HARDY POTTINGER
> I-Net Administrator
> MOBIUS Consortium
> 573-884-4502 / FAX 573-884-3395
> http://mobius.missouri.edu
> pottingerhj@xxxxxxxxxx
> ...worth reading...
>   http://www.noblenet.org/swapshop/
>   http://www.bookmarklets.com/
> ----------------------------------------
>
> > -----Original Message-----
> > Date: Tue, 21 May 2002 14:22:05 -0400
> > From: James Campbell <James.Campbell@xxxxxxxxxx>
> > To: INNOPAC Users <INNOPAC@xxxxxxxxxx>
> > Subject: AVS no hits javascript
> > Reply-To: innopac@xxxxxxxxxx
> >
> > Any Inn-Reach sites with AVS and scopes which pass through "no 
> > entries found" AVS searches to a non-scoped central catalog?  Have 
> > you had success with either of the III offered JavaScripts
(especially Emalee
> > Craft's) for the above scenario?   We're finding the script geared
> > toward scopes fails whether conducting a scoped or unscoped search 
> > when the target site has no scope.  If you have a revised or
> > suggested script
> > can you share?
> >
> > thanks
> > -Jim
> >
> >
> >
> >
> > =======================================================
> > James Campbell
> > Library Automation Dept.
> > University of Cincinnati
> > 513-556-1408
> > mailto:James.Campbell@xxxxxxxxxx
> --
> This message was distributed through the Innovative Users Group 
> INNOPAC list Public replies:  INNOPAC@xxxxxxxxxx Update your 
> subscription options: http://innopacusers.org/list/listinfo/innopac





--__--__--

Message: 5
From: Dannis Mitchell <dmitch@xxxxxxxxxx>
To: "'innopac@xxxxxxxxxx'" <innopac@xxxxxxxxxx>
Subject: RE: Self-Check Users
Date: Tue, 28 May 2002 11:44:38 -0700
Reply-To: innopac@xxxxxxxxxx

Please add me to this list as well.  We currently have a 3M 5220 that is
so sensitive to barcode placement it hardly ever gets used.  We are
implementing Millennium over the summer and will be moving into a new
building the following summer so are interested in a self check system
that is reliable and compatible with Millennium.  Any information would
be greatly appreciated.

Dannis L. Mitchell
Public Services Supervisor
Arts & Lectures Support
Library & Information Services
phone 760-750-4334
fax    760-750-3287
e-mail dmitch@xxxxxxxxxx


-----Original Message-----
From: Sheila Smart [mailto:shs1@xxxxxxxxxx] 
Sent: Thursday, May 23, 2002 1:22 AM
To: innopac@xxxxxxxxxx
Subject: Re: Self-Check Users

Deb - we would be interested in this also, especially any comments about

compatibility with Millenium.

At 22-05-02 17:07 Wednesday, you wrote:
>We are going to be budgeting for a new Self-check system for our 
>Library for 2003.  We currently have a 3M Model 5210 which we are going

>to be phasing out and replacing.  I would like to gather some 
>"hands-on" information regarding what Brand and model other Millennium 
>Libraries may be using, their level of satisfaction with the unit 
>itself, support from the vendor and compatibility with the Millennium 
>interface. Please respond to me at:  deniousdj@xxxxxxxxxx Thank 
>you-
>
>Deb Denious
>Library Information Systems Specialist
>Durango Public Library
>1188 E 2nd Ave
>Durango, CO 81301
>970-385-2970
>deniousdj@xxxxxxxxxx
>
>--
>This message was distributed through the Innovative Users Group INNOPAC
list
>Public replies:  INNOPAC@xxxxxxxxxx
>Update your subscription options:
>http://innopacusers.org/list/listinfo/innopac

Regards

******************************
Sheila Smart		
Deputy Systems Manager	
Systems Office		
Library
Ext: 2316
******************************

--
This message was distributed through the Innovative Users Group INNOPAC
list Public replies:  INNOPAC@xxxxxxxxxx Update your subscription
options: http://innopacusers.org/list/listinfo/innopac


--__--__--

Message: 6
Date: Tue, 28 May 2002 12:59:57 -0600
From: "Christopher C. Brown" <cbrown@xxxxxxxxxx>
Subject: RE: export create list to Access
To: innopac@xxxxxxxxxx
Reply-To: innopac@xxxxxxxxxx

I create Access tables from III output many times per week. Here are
some easy steps:

1) Create your list (review file)
2) Output records: U > Output USER-selected format
3) Create new output file: C > CREATE a new file for output
NOTE: You will need to consider how to treat repeating (iterating)
fields. 
See no. 3 below:
                                 RECORD FORMAT
1 > Field Delimiter............................................ , 2 >
Text Qualifier............................................. " 3 >
Repeated Field Delimiter................................... ; 4 >
Maximum Field Length..................................... none

I use a ^ character to separate these fields, instead of the default ;
(semicolon). The combination of comma as field delimiter and quote as
text qualifier creates a comma delimited file format (CSV) which easily
imports into Excel, Access, or any database software. BUT, you need to
be carefully consider the impact of any repeating fields.
4) Transfer the desired file to your computer using FTP software. I run
local FTP software on my desktop computer (QVT/Net FTP server), which
comes along with the QVT FTP client software. I only turn the software
on when I am transferring files to or from III.
5) Import file into Access (or Excel).

I hope this is what you wanted to know.

Chris Brown


Christopher C. Brown
Reference Librarian / Government Documents Librarian
Penrose Library; University of Denver
2150 E. Evans Ave.
Denver, CO  USA 80208
Phone/Voicemail: 303-871-3404
Fax: 303-871-2290
Web: http://www.du.edu/~cbrown/
Web: http://www.virtualref.com/


-----Original Message-----
From: innopac-admin@xxxxxxxxxx
[mailto:innopac-admin@xxxxxxxxxx] On Behalf Of
Fred_Sweet@xxxxxxxxxx
Sent: Tuesday, May 28, 2002 10:19 AM
To: innopac@xxxxxxxxxx
Subject: export create list to Access


I've done it before but can't remember the steps--- Can someone tell me
how to export a create list into an Access table? (Or where to find
directions for the same). Thanks.

Fred Sweet
Theological and Reference Librarian
Miller Library at Cornerstone University
Grand Rapids, MI 49525

(616) 949-5300 ext 1362

--
This message was distributed through the Innovative Users Group INNOPAC
list Public replies:  INNOPAC@xxxxxxxxxx Update your subscription
options: http://innopacusers.org/list/listinfo/innopac


--__--__--

Message: 7
From: "Kathy Ossi" <kossi@xxxxxxxxxx>
To: "Innopac Users Group" <INNOPAC@xxxxxxxxxx>
Subject: Acquisitions Librarian (Franklin, Tennessee)
Date: Tue, 28 May 2002 14:50:59 -0500
Reply-To: innopac@xxxxxxxxxx

Acquisitions Librarian. Full-time. Responsible for purchase of all
materials in INNOPAC system, including bibliographic verification of
titles, fund management, and vendor selection. Experience in library
acquisitions in an automated environment preferred. Master's Degree in
Library Science or equivalent. Salary starts at $26,644.80. Applications
accepted until the position is filled. Available July 9, contingent on
final funding approval. Contact Janice Keck, Director at 615-595-1240 or
jkeck@xxxxxxxxxx.

Job description follows:
Job Title: Acquisitions Librarian
Department: Williamson County Public Library
Reports to: System Support Services Coordinator

SUMMARY

The employee in this class is under limited supervision of Systems
Support Services Coordinator. He/she manages the acquisitions and
ordering of library materials for the Main Library and the four branch
libraries throughout the county.

ESSENTIAL DUTIES AND RESPONSIBILITIES include the following.

Coordinates the ordering, receiving and invoicing of library materials
with the Collections Development Librarian. Manages the ordering process
in the acquisitions module of the library's automated system, Innopac.
Acquires bibliographic records from the ITS MARC database. Selects
vendors and monitors their performance. Processes the claiming of
materials ordered but never received. Authorizes the cancellation of
material orders. Monitors the county, city, and general book funds when
purchasing materials. Prints fund reports for the county, city and
general book funds. Schedule department staff and work flow for maximum
effectiveness Performs other duties as assigned. REQUIRED COMPUTER
SKILLS

Knowledge of Windows 98, NT, or 2000 operating systems. Knowledge of
Microsoft Word, Microsoft Excel, and Microsoft Access programs.
Knowledge of INNOPAC automated system acquisitions and cataloging
functions. Knowledge of standard computer search protocols such as
keyword and Boolean operators. Knowledge of search protocols used by the
Internet. Ability to add paper to the printers / copiers and clear paper
jams SUPERVISORY RESPONSIBILITIES

Directly supervises the acquisitions clerks.

QUALIFICATIONS

To perform this job successfully, and individual must be able to perform
each essential duty satisfactorily. The requirements listed below are
representative of the knowledge, skill, and/or ability required.

EDUCATION and/or EXPERIENCE

MLS from an ALA accredited university, and one to three years'
experience working in library acquisitions, preferably using an
automated library system.



Kathy J. Ossi
Automation Librarian
Williamson County Public Library
611 West Main Street
Franklin, TN 37064
615.595.1241
fax 615.595.1245
http://lib.williamson-tn.org



--__--__--

Message: 8
Date: Tue, 28 May 2002 13:10:09 -0700
From: beehler@xxxxxxxxxx
To: innopac@xxxxxxxxxx
Subject: missing issues
Reply-To: innopac@xxxxxxxxxx

We keep a record of our missing issues in checkin boxes on III.  I can 
run a list of the titles that have boxes with a status of "missing" but 
I can't figure out how to print out the contents of the boxes.  Is 
there any way to do this?  I checked the manual but couldn't find any 
hints.
Thanks for any help you can give me--even if it's a negative answer.

Sandra A. Beehler
Acquisitions/Collection Development Librarian
Aubrey R. Watzek Library
Lewis & Clark College
0615 SW Palatine Hill Road
Portland, OR  97219
Phone:  503-768-7268
Fax: 503-768-7282
beehler@xxxxxxxxxx

--__--__--

Message: 9
Date: Tue, 28 May 2002 15:19:26 -0500
From: John Wynstra <john.wynstra@xxxxxxxxxx>
Subject: ejm - E-journal management
To: innopac@xxxxxxxxxx
Organization: University of Northern Iowa
Reply-To: innopac@xxxxxxxxxx

It has been 4 weeks since IUG met in Houston.  During the conference
there were two Birds-of-a-feather sessions related specifically to
managing electronic journals in an Innovative System.  In addition there
are a number of product development enhancements occurring that are
moving towards a good solution to this problem.  

Enough background.  At the BOaF sessions, a number of folks expressed an
interest in continuing this discussion on-line, even setting up a
distribution list specifically for this purpose.  I offered to pursue
this, but have been quite busy since returning.

Enough excuses.  I did ask the steering committee if they would be
willing to host a list for this purpose.  They indicated that they
thought there would be more value to holding this discussion on the
current IUG list since the topic is so relevant to all libraries.  

With that in mind, I propose that we do try to hold this discussion on
this list, but that we use a common subject prefix for all of the
postings so that they are easily retrieved and collated from the
archives.  I suggest that we prefix EJM to the subject heading (e.g.,
Subject: "ejm - perl script" or "Re: ejm - load profile").

Who knows.  There may be less to talk about than we think.  Either way,
I will follow this posting by another post on topic.  



-- 
<><><><><><><><><><><><><><><><><><><>
John Wynstra
Library Information Systems Specialist
Rod Library
University of Northern Iowa
Cedar Falls, IA  50613
wynstra@xxxxxxxxxx
(319)273-3619
<><><><><><><><><><><><><><><><><><><>

--__--__--

Message: 10
Date: Tue, 28 May 2002 15:20:05 -0500
From: John Wynstra <john.wynstra@xxxxxxxxxx>
Subject: EJM - The problem and an approach
To: innopac@xxxxxxxxxx
Organization: University of Northern Iowa
Reply-To: innopac@xxxxxxxxxx

One problem with managing e-journals in any library catalog is the sheer
bulk of the titles we are dealing with.   Many e-journal providers seem
to be unstable in their title holdings,  potentially dropping and adding
hundreds of titles in a very short period of time.  This is particularly
the case with large aggregators such as Lexis/Nexis and Infotrac
Expanded Academic Index. This creates a huge maintenance problem.

This aspect of the problem can be summed up as: "How do we keep our
catalogs up to date and accurate  with regards to e-journals so that we
can have confidence when it reports we do or do not have access to a
particular journal, that this is indeed the case?"  

The nature of the e-joural providers themselves create another
interesting problem.  Some providers give ISSUE access (e.g., Project
Muse) while others provide ARTICLE access (Lexis/Nexis) with out giving
you table of contents access points.  Do we give the same weight to a
journal available from say Project Muse and that same title available
form Lexis/Nexis?

One of the very interesting results of the e-journal management problem
has been the appearance of locally developed Electronic Resource
Databases.  These databases are built on a relational database back end
that is separate from the library catalog.  They are used to present
bibliographic data to the end user that really should be available from
the catalog.  This indicates to me that there are some perceived
limitations to the catalog that are causing folks to think that this
particular data must be made available from a resource other than the
catalog.

As I see it, the perceived shortcomings probably fall in two categories.
One category is the presentation problem.  Our catalogs by nature are
places to search for things.  That means you need to prime the pump to
get results.  With e-journals, our inclination is to want to give as
much guidance to our end user as possible so that they don't start with
a blank search form and have to enter the magic search phrase that will
uncover the desired results.  This usually means, canned searches and
multiple browse options with logical starting points.  

The other category is the maintenance problem which boils down to this:
"How do we keep the e-journal data in our catalogs current?"

Here at UNI we are pursuing the following strategy to address the
maintenance problem of managing ejournals in our III system. Our current
focus is more on the large aggregators carrying 500+ titles.  

1) Subscribe to Serials Solutions(SS) for accurate listing of our
   e-journals. We obtain the data in both html and .CSV output 
   (spreadsheet).

2) Transform the data from SS into a marc format.

3) [a]Load the initial marc records into the III system as brief,
      separate records.  Do not attach or overwrite existing records.

   [b]Upon subsequent loads, remove old brief records and load in new
      ones.

Any suggestions concerning this strategy will be appreciated.  Also any
local solutions that have been implemented as well as any general
discussion of this topic will be welcome as part of this discussion.  


<><><><><><><><><><><><><><><><><><><>
John Wynstra
Library Information Systems Specialist
Rod Library
University of Northern Iowa
Cedar Falls, IA  50613
wynstra@xxxxxxxxxx
(319)273-3619
<><><><><><><><><><><><><><><><><><><>

--__--__--

Message: 11
Date: Tue, 28 May 2002 16:54:27 -0400
To: innopac@xxxxxxxxxx
From: Pamela Quatse <pquatse@xxxxxxxxxx>
Subject: re photo ID
Reply-To: innopac@xxxxxxxxxx

Here at Brookdale, the college ID has a digital photo and the student's 
barcode imbedded in it.  I think the security problem comes in if the
card 
has the SS# .  Ours doesn't.

Pam Quatse
Library Sueprvisor
Brookdale Community Clg
Lincroft, NJ


--__--__--

Message: 12
Date: Tue, 28 May 2002 15:59:08 -0700
From: "Penny Swanson" <swansonp@xxxxxxxxxx>
To: <innopac@xxxxxxxxxx>
Subject: Re: EJM - another part of the problem
Reply-To: innopac@xxxxxxxxxx

John and all;

I'll jump in here, though I wasn't at the User Group meeting, so don't =
know if this was discussed. =20

In addition to the problems John mentioned, the display in the OPAC is a
= major problem for us.  The Public Service librarians do not like
having to = bounce from bib record to bib record to discover which years
of the same = title we have in various forms.  Our special journal title
database has = title of journal - years held - where held (in library or
in a database).  = When a student is looking to see if we have journal
x, that is all s/he =
want's to know.    Wouldn't it be nice if we could display different =
elements of records based on their format, especially for serials?

In our case, even if we found solutions to all the downloading,
inputting = and maintenance problems, our Public Services librarians
would still = insist on the special journal title database (and the
duplicate work that =
involves) because of the display problem.

Penny


~^~^~^~^~^~^~^~^~^~^~^~^~^~^~^
Penny Swanson
Knowledge Access Librarian
Douglas  College Library
P.O. Box 2503=20
New Westminster, B. C.
Canada         V3L 5B2
(604) 527-5259
FAX: 527-5193
swansonp@xxxxxxxxxx



--__--__--

Message: 13
From: "Mark H. Kibbey" <mkibbey@xxxxxxxxxx>
To: <innopac@xxxxxxxxxx>
Subject:  EJM - Other aspects to The problem 
Date: Tue, 28 May 2002 16:27:02 -0700
Reply-To: innopac@xxxxxxxxxx

Thanks for the lead off John;

I would agree a big factor is scale, but its not just 500+ collections.
The license data required for 2 or 3 titles can be a real pain in
itself. So another aspect of the problem is that vendor relations are
more complex- and we have a lot more of them. My library has cases where
the license holder, the supplier and the fiscal agent for an online
resource are all different. So a number of Eresource databases are
strong on license and contact management.

NISO and the DLF recently held a joint workshop with a lot of
participants (including III) and there is a nice set of notes for anyone
interested in a broad discussion of the problem:
http://www.library.cornell.edu/cts/elicensestudy/nisodlf/home.htm


As for the more immediate question of maintaining holdings, my goal is
to have one master set of holdings that drive all catalog displays, web
lists and the like. We have been doing  that in a fashion similar to
yours, by putting everything in the catalog and then exporting records
into an SQL database. This one directional flow allows staff to do
maintenance only via
III- but we have reached the limits of what can be stuffed into a
checkin.

Some details of our approach are different. In order to get better marc
records we went to multiple sources but that also means we have fewer
holdings than SerialsSolns(SS) could provide. Since SS is adding MARC we
may switch our approach. We also try to merge all formats onto the print
record and put URL's in the checkin. Using the checkin lets us merge
records and still delete and replace the specific subscription being
updated. This approach requires a bit more editing of incoming records
so I use MARC.pm for that. The new III product for maintaining lib has
is interesting if a bit pricey. It would allow us to save our local data
and just update the holdings with an external source like SS. The more
different suppliers you have the more a third party service pays off.




----- Original Message  (truncated in the interestes of space)-----
From: "John Wynstra" <john.wynstra@xxxxxxxxxx>
To: <innopac@xxxxxxxxxx>
Sent: Tuesday, May 28, 2002 1:20 PM
Subject: EJM - The problem and an approach


> One problem with managing e-journals in any library catalog is the
sheer
> bulk of the titles we are dealing with.   Many e-journal providers
seem
> to be unstable in their title holdings,  potentially dropping and 
> adding hundreds of titles in a very short period of time.  This is 
> particularly
-------truncated


--__--__--

Message: 14
Date: Sun, 26 May 2002 09:20:08 -0700
From: Raye Lynn Thomas <thomasra@xxxxxxxxxx>
Organization: Sonoma State University
To: innopac@xxxxxxxxxx
Subject: Re: Proxy Rewrite Method
Reply-To: innopac@xxxxxxxxxx

Tobey,
Make sure that "library.alliant.edu" is the actual name of your
server.=20 The actual machine name may be a bit different from the name
used as the =

url, and this is the one that needs to be usedin the Innovative
server=20 part of the resource URL. Use the instructions for an nslookup
in the CS =

Direct WabAccess Management-Proxy Rewrite Method FAQ. It is in the=20
section "How can I test my DNS entries?"

-Raye Lynn Thomas
University Library
Sonoma State University



Tobey Birch wrote:

>We are starting to implement the proxy rewrite method available with 
>Rel=
ease 2002 Phase I. Our DNS administrator has modified the hosts.db file
b= y adding *.library.alliant.edu and says that the change works on the
DNS = server.
>
>But when I test a sample resource URL, revised according to the 
>instruct=
ions at CSDirect, I get an immediate message (both in Netscape and IE)
th= at the server cannot be located.
>
>Any suggestions on what the problem might be?
>
>Thanks in advance,
>
>Tobeylynn Birch
>University Librarian &
>Director of Library Services, Los Angeles
>Alliant International University
>1000 S. Fremont Ave, Unit 5
>Alhambra, CA 91803
>626-284-2777 x3060
>FAX 626-284-1682
>tbirch@xxxxxxxxxx
>http://www.alliant.edu/library/
>
>--
>This message was distributed through the Innovative Users Group INNOPAC

>=
list
>Public replies:  INNOPAC@xxxxxxxxxx
>Update your subscription options: 
>http://innopacusers.org/list/listinfo/=
innopac
>

--=20
-oe=11++=B0=B1=1A=B7




--__--__--

Message: 15
Date: Mon, 27 May 2002 16:50:18 -0500
From: "Laure Chrisman" <LChrisma@xxxxxxxxxx>
To: <innopac@xxxxxxxxxx>
Subject: transferring records in Millenium
Reply-To: innopac@xxxxxxxxxx

In iii we were able to move the item, checkin, order and/or hold records
from one iii record to another  by going to :

O>  ORDERING and receiving subsystem
then
<A>  ADDITIONAL ordering and receiving functions
then
<T>  TRANSFER attached records.

I cannot find a way to do this in Millenium. Does anyone have any
information on how to do this?

Any help you can provide is most appreciated. 




Laure Chrisman
Lchrisma@xxxxxxxxxx
University of North Texas Library
Technical Services
901 Precision Dr.
Denton, TX 76203
(940) 565-2517

--__--__--

Message: 16
From: CSeeman@xxxxxxxxxx
To: LChrisma@xxxxxxxxxx, innopac@xxxxxxxxxx
Subject: RE: transferring records in Millenium
Date: Tue, 28 May 2002 21:43:58 -0400
Reply-To: innopac@xxxxxxxxxx

Laure -- 

According to the Release 2002 enhancements, the feature that allows the
transfer of attached records will become part of the new Millennium
Editor (so it should be part of Milcat, Milacq and Milser).  From what I
can tell, it will act like the program does in GUICAT, whereas it is
part of the editing program and not a stand alone product.  So this
should be available in the fall.

This is not currently available in the Millennium suite of products.

Best -

Corey Seeman
University of Toledo
corey.seeman@xxxxxxxxxx

-----Original Message-----
From: Laure Chrisman
To: innopac@xxxxxxxxxx
Sent: 5/27/2002 5:50 PM
Subject: transferring records in Millenium

In iii we were able to move the item, checkin, order and/or hold records
from one iii record to another  by going to :

O>  ORDERING and receiving subsystem
then
<A>  ADDITIONAL ordering and receiving functions
then
<T>  TRANSFER attached records.

I cannot find a way to do this in Millenium. Does anyone have any
information on how to do this?

Any help you can provide is most appreciated. 




Laure Chrisman
Lchrisma@xxxxxxxxxx
University of North Texas Library
Technical Services
901 Precision Dr.
Denton, TX 76203
(940) 565-2517
--
This message was distributed through the Innovative Users Group INNOPAC
list Public replies:  INNOPAC@xxxxxxxxxx Update your subscription
options: http://innopacusers.org/list/listinfo/innopac


--__--__--

--
This message was distributed through the Innovative Users Group INNOPAC
digest Public replies:  INNOPAC@xxxxxxxxxx Update your
subscription options: http://innopacusers.org/list/listinfo/innopac

End of INNOPAC Digest