newsgroups-index (beta)

Current group: bit.listserv.vse-l

Using Dr. D to restore Faver2 tapes

Using Dr. D to restore Faver2 tapes  
Ikcelaks
 Re: Using Dr. D to restore Faver2 tapes  
william JANULIN
 BSTTFTPC  
industrynews at dapsco.com
 Re: BSTTFTPC  
industrynews at dapsco.com
 Re: BSTTFTPC  
Michael Rosinger
 Re: BSTTFTPC  
Michael Rosinger
 Re: BSTTFTPC  
industrynews at dapsco.com
From:Ikcelaks
Subject:Using Dr. D to restore Faver2 tapes
Date:19 Jan 2005 07:30:06 -0800
I work at a data center that is considering switching to Dr. D from
Faver2. We are very interested in Dr. D's capabilities for future
restores of our old Faver2 archive tapes. Unfortunately, the newest
Dr. D user's guide (6.7) excludes 'RESTORE=LOGICAL - VSAM' from the
list of valid operations on "foreign" tapes. As far as I can tell,
this makes it impossible to restore multiple files at once or use
wild-cards to select the file(s) to restore from the tape. Is my
thinking correct? If not, can I ask how these operations would be
done? And, if so, does anyone have a clever work-around for
(relatively) easily restoring some subset of files from a Faver2 tape
containing hundreds of files? In the worst case, these kinds of
restores should be fairly rare; so, we could just manually create the
operations for each individual file we want, but it would be great to
find another solution.
From:william JANULIN
Subject:Re: Using Dr. D to restore Faver2 tapes
Date:19 Jan 2005 08:37:12 -0800
You may want to look at Macro 4's DATABACK solution.
>From what I understand, it has the same capabilities
as Faver and Dr. D

Bill J.
--- Ikcelaks wrote:

> I work at a data center that is considering
> switching to Dr. D from
> Faver2. We are very interested in Dr. D's
> capabilities for future
> restores of our old Faver2 archive tapes.
> Unfortunately, the newest
> Dr. D user's guide (6.7) excludes 'RESTORE=LOGICAL -
> VSAM' from the
> list of valid operations on "foreign" tapes. As far
> as I can tell,
> this makes it impossible to restore multiple files
> at once or use
> wild-cards to select the file(s) to restore from the
> tape. Is my
> thinking correct? If not, can I ask how these
> operations would be
> done? And, if so, does anyone have a clever
> work-around for
> (relatively) easily restoring some subset of files
> from a Faver2 tape
> containing hundreds of files? In the worst case,
> these kinds of
> restores should be fairly rare; so, we could just
> manually create the
> operations for each individual file we want, but it
> would be great to
> find another solution.
>
>


__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
From:industrynews at dapsco.com
Subject:BSTTFTPC
Date:19 Jan 2005 09:46:10 -0800
Anybody have the method down pat for using batch FTP (BSI flavor) to
transfer fixed-length reports from the POWER LST queue? Thanks.

Sincerely,

Dave Clark

DAPSCO Information Systems
3110 Kettering Boulevard
Dayton, Ohio 45439
(937) 294-5331
From:industrynews at dapsco.com
Subject:Re: BSTTFTPC
Date:19 Jan 2005 12:29:26 -0800
owner-vse-l@Lehigh.EDU wrote on 01/19/2005 12:02:09 PM:
> Anybody have the method down pat for using batch FTP (BSI flavor) to
> transfer fixed-length reports from the POWER LST queue? Thanks.

"down pat" means "definitely know how to do it -- sure fire -- works
every time". ;-)

At any rate... I got impatient waiting for either Jeff to respond to my
email or the list to come through once again. I called Jeff and the answer
is that it can't be done when using a binary transfer. To use a binary
transfer, I would have to create the report with the BTRNC=NO parm in the
LST card. When I told him I was transferring to an AS/400 output queue, he
suggested I just use an ASCII transfer and that the AS/400 would translate
back to EBCDIC and use the cr/lf to determine line length. This worked
perfectly. Thanks all. ;-)

Sincerely,

Dave Clark

DAPSCO Information Systems
3110 Kettering Boulevard
Dayton, Ohio 45439
(937) 294-5331
From:Michael Rosinger
Subject:Re: BSTTFTPC
Date:Wed, 19 Jan 2005 13:17:48 -0500
Dave,

Not sure what you mean by "down pat". I use it for several things. One of them
is to FTP the report output from a REXX/DB2 query to various recipients as a
..txt file. Works every time. Would you like to see that?

industrynews@dapsco.com wrote:

> Anybody have the method down pat for using batch FTP (BSI flavor) to
> transfer fixed-length reports from the POWER LST queue? Thanks.

--
Michael Rosinger
Systems Programmer/DBA
Computer Credit, Inc.
640 W. 4th Street
Winston-Salem, NC 27101
voice : 336-761-1524
fax : 336-761-8852
email : mrosinger at cciws dot com
From:Michael Rosinger
Subject:Re: BSTTFTPC
Date:Wed, 19 Jan 2005 14:24:52 -0500
Since someone else posted their example, I suppose I could post mine too :-)

* $$ JOB JNM=QRYDOC,CLASS=J,DISP=D
* $$ LST CLASS=Z,DISP=H
// JOB QRYDOC
* exec REXXQRY proc...
// EXEC REXX=REXXQRY,SIZE=1M,PARM='SQLDBA/SQLDBAPW,MSGMODE=TERSE+'
<=== query goes here
/*
/. FTP
* $$ LST CLASS=Z,DISP=H
/*
// LIBDEF PHASE,SEARCH=VENDLIB.IPTOOLS
// LIBDEF SOURCE,SEARCH=(VENDLIB.IPCONFIG,VENDLIB.IPTOOLS)
// EXEC BSTTFTPC,SIZE=BSTTFTPC
OPEN 192.168.1.xxx
USER xxx
PASS xxx
SYST
INPUT POWER LST QRYDOC 0 B
TYPE A
STOR QRYDOC.TXT
QUIT
/*
/. END
/&
* $$ EOJ


Michael Rosinger wrote:

> Dave,
>
> Not sure what you mean by "down pat". I use it for several things. One of them
> is to FTP the report output from a REXX/DB2 query to various recipients as a
> .txt file. Works every time. Would you like to see that?
>

--
Michael Rosinger
Systems Programmer/DBA
Computer Credit, Inc.
640 W. 4th Street
Winston-Salem, NC 27101
voice : 336-761-1524
fax : 336-761-8852
email : mrosinger at cciws dot com
From:industrynews at dapsco.com
Subject:Re: BSTTFTPC
Date:19 Jan 2005 13:16:11 -0800
owner-vse-l@Lehigh.EDU wrote on 01/19/2005 02:24:52 PM:
> Since someone else posted their example,
> I suppose I could post mine too :-)

For the curious, this is what I'm doing:
(the mainframe calls the AS/400 CL program to create the specified custom
printer file in a data library with the specified company number suffix)

OPEN WINSRV1.WINWHOLESALE.COM
USER xxxxxxxx
PASS xxxxxxxx
SYST
SITE NAMEFMT 1
SEND RCMD CALL PGM(FIX460/ACFTPPRTCL) PARM('EXTENSIONS' '921')
CWD QSYS.LIB/DTA921.LIB
TYPE A
INPUT POWER LST DILFXTND 09636 Z
STOR EXTENSIONS.FILE/EXTENSIONS.MBR
INPUT POWER LST DILFXTND 09634 Z
STOR EXTENSIONS.FILE/EXTENSIONS.MBR
QUIT

Sincerely,

Dave Clark

DAPSCO Information Systems
3110 Kettering Boulevard
Dayton, Ohio 45439
(937) 294-5331
   

Copyright © 2006 newsgroups-index   -   All rights reserved   -   Impressum