Re: Looking For A Search Engine

2006-06-29 Thread TISLER Zaromil
Some time ago I made some changes in a rexx I found on the CBT tape (I'm sorry not to know the author's name). It searches for a given string in all datasets that match a given dataset name pattern and/or allocated on volumes that match a given volser pattern. I use this JCL: //T1AI$RCG JOB

Re: Looking For a Search Engine

2006-06-29 Thread Warner Mach
Re: Looking For a Search Engine . On Wednesday 28 June 2006 02:04, David Shein wrote: Does anyone know of a program that will search a set of MVS data sets for a member and/or text within a member? I am looking for something that can run in batch and search a large number of data sets

Re: Looking For A Search Engine

2006-06-29 Thread Shmuel Metz (Seymour J.)
In [EMAIL PROTECTED], on 06/27/2006 at 11:03 PM, David Shein [EMAIL PROTECTED] said: Does anyone know of a program that will search a set of MVS data sets for a member and/or text within a member? There are a whole punch that will search multiple DD mstatements. There's also grep, which lets

Looking For A Search Engine

2006-06-28 Thread David Shein
Does anyone know of a program that will search a set of MVS data sets for a member and/or text within a member? I am looking for something that can run in batch and search a large number of data sets in a single operation. Does the CBT tape or some other venue have a tool that will do that?

Re: Looking For A Search Engine

2006-06-28 Thread Tom Harper
the details. Tom Behalf Of David Shein Sent: Wednesday, June 28, 2006 1:04 AM To: IBM-MAIN@BAMA.UA.EDU Subject: Looking For A Search Engine Does anyone know of a program that will search a set of MVS data sets for a member and/or text within a member? I am looking for something that can run in batch

Re: Looking For A Search Engine

2006-06-28 Thread Veilleux, Jon L
[EMAIL PROTECTED] (860) 636-2683 -Original Message- From: IBM Mainframe Discussion List [mailto:[EMAIL PROTECTED] On Behalf Of David Shein Sent: Wednesday, June 28, 2006 2:04 AM To: IBM-MAIN@BAMA.UA.EDU Subject: Looking For A Search Engine Does anyone know of a program that will search a set

Re: Looking For A Search Engine

2006-06-28 Thread David Shein
Jon, Thanks for that. I had considered an approach like this (Rexx is usually my first response to such tasks), but that kind of iterative processing in Rexx, plus all the allocation/deallocation, is likely to be just too slow for the kinds of searches we need to do. I don't mind if the job

Re: Looking For A Search Engine

2006-06-28 Thread John Kington
David, If you have PDSMAN, it can scan multiple pds datasets. It will show the name of the pds dataset in the heading in case you are concatenating multiple datasets. That is one advantage it had over the ISRSUPC utility that IBM provides. Regards, John

Re: Looking For A Search Engine

2006-06-28 Thread David Andrews
IPOUPDTE might work for you if you can live with its token scanning. (Generally, you can scan for anything that might pass as a JCL token.) -- David Andrews A. Duda and Sons, Inc. [EMAIL PROTECTED] -- For IBM-MAIN subscribe /

Re: Looking For A Search Engine

2006-06-28 Thread Gilbert Saint-Flour
On Wednesday 28 June 2006 02:04, David Shein wrote: Does anyone know of a program that will search a set of MVS data sets for a member and/or text within a member? I am looking for something that can run in batch and search a large number of data sets in a single operation. Does the

Re: Looking For A Search Engine

2006-06-28 Thread Ray Mullins
@BAMA.UA.EDU Subject: Re: Looking For A Search Engine IPOUPDTE might work for you if you can live with its token scanning. (Generally, you can scan for anything that might pass as a JCL token.) -- For IBM-MAIN subscribe / signoff

Re: Looking For A Search Engine

2006-06-28 Thread Clark Morris
, June 28, 2006 1:04 AM To: IBM-MAIN@BAMA.UA.EDU Subject: Looking For A Search Engine Does anyone know of a program that will search a set of MVS data sets for a member and/or text within a member? I am looking for something that can run in batch and search a large number of data sets

Re: Looking For A Search Engine

2006-06-28 Thread Bruce Hewson
Hello David, You can use IBM supplied SRCHFOR in batch (or online). eg. //SYDBHS14 JOB (ACCT#),'SEARCH SYSLOG', // CLASS=I, // MSGCLASS=W, //

Re: Looking For A Search Engine

2006-06-28 Thread David Shein
Thanx, Bruce, I think that'll do what we need. I was about to ask where is it documented? but then I found it -- ISPF Users Guide, Vol. 2. Thanks again. David At 11:15 PM 6/28/2006 -0500, you wrote: Hello David, You can use IBM supplied SRCHFOR in batch (or online). eg. //SYDBHS14 JOB