View previous topic :: View next topic |
Author |
Message |
satyenderd Beginner
Joined: 26 Aug 2005 Posts: 144 Topics: 73
|
Posted: Wed Jul 16, 2008 4:09 pm Post subject: How to Browse the Tape files using File-aid or any? |
|
|
Could anyone let me know how to browse the Tape file, either in
File-aid or any other alternative.
Thanks in Advance. _________________ Satya |
|
Back to top |
|
 |
Nic Clouston Advanced
Joined: 01 Feb 2007 Posts: 1075 Topics: 7 Location: At Home
|
Posted: Wed Jul 16, 2008 4:12 pm Post subject: |
|
|
Copy it to disk. I think that is the only way. Generally Browse works with with DASD. I do not know of any browse utility that can handle a tape. If you think about it you will know why. On the other hand, someone may know of such a beast. _________________ Utility and Program control cards are NOT, repeat NOT, JCL. |
|
Back to top |
|
 |
satyenderd Beginner
Joined: 26 Aug 2005 Posts: 144 Topics: 73
|
Posted: Wed Jul 16, 2008 4:34 pm Post subject: |
|
|
Thanks Nic..
 _________________ Satya |
|
Back to top |
|
 |
satyenderd Beginner
Joined: 26 Aug 2005 Posts: 144 Topics: 73
|
Posted: Tue Jul 22, 2008 6:59 pm Post subject: COPY FROM TAPE TO DISK |
|
|
I Found this answer:
Code: |
//UNLOAD EXEC PGM=IEBCOPY
//SYSPRINT DD SYSOUT=A
//TAPE DD DISP=OLD,DSN=NSP.NSPS110.F5,
// VOL=SER=NSP110,
// UNIT=tape,LABEL=(6,SL)
//DISK DD DSN=prefix.NSPS110I.NSPSINST,DISP=(NEW,CATLG),UNIT=3380,
// VOL=SER=xxxxxx,
// SPACE=(TRK,(1,1,2)),
// DCB=(RECFM=FB,BLKSIZE=6160,LRECL=80)
//SYSIN DD *
COPY INDD=TAPE,OUTDD=DISK
/* |
_________________ Satya |
|
Back to top |
|
 |
semigeezer Supermod
Joined: 03 Jan 2003 Posts: 1014 Topics: 13 Location: Atlantis
|
Posted: Tue Jul 22, 2008 8:12 pm Post subject: |
|
|
If you want to write your own I/O routines, you can use ISPF's BRIF service to browse anything, as long as you can position the data window dynamically. Left as an exercise for the reader  _________________ New members are encouraged to read the How To Ask Questions The Smart Way FAQ at http://www.catb.org/~esr/faqs/smart-questions.html. |
|
Back to top |
|
 |
expat Intermediate

Joined: 01 Mar 2007 Posts: 475 Topics: 9 Location: Welsh Wales
|
Posted: Wed Jul 23, 2008 1:15 am Post subject: |
|
|
Also your TSO session must be authorised for online tape usage _________________ If it's true that we are here to help others,
then what exactly are the others here for ? |
|
Back to top |
|
 |
satyenderd Beginner
Joined: 26 Aug 2005 Posts: 144 Topics: 73
|
Posted: Wed Jul 23, 2008 1:37 pm Post subject: |
|
|
Thanks all for your suggestions. _________________ Satya |
|
Back to top |
|
 |
|
|