View previous topic :: View next topic
|
Author |
Message |
vasa Warnings : 1 New User
Joined: 10 Jan 2006 Posts: 9
|
|
|
|
hi,
my question is what is the tso command to display 100 records
thanks,
srinivasachary |
|
Back to top |
|
|
superk
Global Moderator
Joined: 26 Apr 2004 Posts: 4652 Location: Raleigh, NC, USA
|
|
|
|
Can't think of one. The closest thing I can think of is to use EDIT to EDIT the dataset, then use the LIST command to list the number of lines:
Code: |
TSO EDIT 'MY.DATASET' TEXT OLD
EDIT
LIST * 100
<lines 1-100 listed>
END
|
|
|
Back to top |
|
|
vasa Warnings : 1 New User
Joined: 10 Jan 2006 Posts: 9
|
|
|
|
thank you sir |
|
Back to top |
|
|
|