View previous topic :: View next topic |
Author |
Message |
akram Beginner
Joined: 16 Jul 2005 Posts: 1 Topics: 1
|
Posted: Sat Jul 16, 2005 4:08 am Post subject: How to edit dataset when its is big |
|
|
When a dataset is of big size, then when you try to edit/view, it automatically substitutes in browse mode. How to open the dataset in edit mode, when this happens? Same case with files also. |
|
Back to top |
|
|
Cogito-Ergo-Sum Advanced
Joined: 15 Dec 2002 Posts: 637 Topics: 43 Location: Bengaluru, INDIA
|
Posted: Mon Jul 18, 2005 1:23 am Post subject: |
|
|
Quote: | How to open the dataset in edit mode, when this happens? |
You cannot! That is why, ISPF opened the dataset in the browse mode. Opening a dataset in edit mode requires some overhead as compared to browse mode. When this overhead is very high, the dataset will be opened in browse mode.
To edit the dataset, you must copy parts of it in separate datasets, edit and then merge them back. Atleast, this is the way I do. _________________ ALL opinions are welcome.
Debugging tip:
When you have eliminated all which is impossible, then whatever remains, however improbable, must be the truth.
-- Sherlock Holmes. |
|
Back to top |
|
|
Mervyn Moderator
Joined: 02 Dec 2002 Posts: 415 Topics: 6 Location: Hove, England
|
Posted: Mon Jul 18, 2005 6:36 am Post subject: |
|
|
You may be able to get a larger region size allocated to your TSO session.
See if your colleagues can help with this. _________________ The day you stop learning the dinosaur becomes extinct |
|
Back to top |
|
|
semigeezer Supermod
Joined: 03 Jan 2003 Posts: 1014 Topics: 13 Location: Atlantis
|
Posted: Mon Jul 18, 2005 2:32 pm Post subject: |
|
|
Region size per se doesn't really matter. But it is the total amount of storage you can get that makes the difference. That is controlled by much more than just the region size (IEFUSI, et al).
If by some slim chance the data set is variable blocked and very wide but with no data past a certain column, you could copy the data to a file w/ a smaller lrecl, edit it and copy it back. That is because EDIT saves the whole lrecl in storage for every record which causes you to run out of storage more quickly for large lrecl data sets. |
|
Back to top |
|
|
Dibakar Advanced
Joined: 02 Dec 2002 Posts: 700 Topics: 63 Location: USA
|
Posted: Tue Jul 19, 2005 8:07 am Post subject: |
|
|
you could open a part of dataset in fileaid and then edit it. not sure if it will work for vsam datasets. |
|
Back to top |
|
|
|
|