SYSDA in DISP-Field



SYSDA in DISP-Field

Postby olivermf » Tue Feb 15, 2011 1:44 pm

Hello,

I have a question regarding the DISK=SYSDA statement.

Where exactly is the temporary file stored at time of execution? Is it on disk or just in random access memory?

What I specifically want to know is, if the system reads and writes faster on "sysda" than on "disk".

Regards,

Oliver
olivermf
 
Posts: 53
Joined: Tue Feb 08, 2011 4:28 pm
Has thanked: 3 times
Been thanked: 0 time

Re: SYSDA in DISP-Field

Postby Robert Sample » Tue Feb 15, 2011 5:24 pm

Most sites use SYSDA (or SYSALLDA) as a generic name for a disk drive. As such, it is not possible for SYSDA to be read or written faster than reading or writing to a specific volume serial of disk. A file written to SYSDA will be stored on disk, not in memory.

Where did you find the DISK=SYSDA construct? Normal JCL would be UNIT=SYSDA and there's not a DISK= parameter for the DD statement.
Robert Sample
Global moderator
 
Posts: 3719
Joined: Sat Dec 19, 2009 8:32 pm
Location: Dubuque, Iowa, USA
Has thanked: 1 time
Been thanked: 279 times

Re: SYSDA in DISP-Field

Postby olivermf » Tue Feb 15, 2011 7:16 pm

Thank you for your reply, that is what I wanted to know.

You are right, the command was UNIT=SYSDA, I'm sorry for that.

Regards

Oliver
olivermf
 
Posts: 53
Joined: Tue Feb 08, 2011 4:28 pm
Has thanked: 3 times
Been thanked: 0 time

Re: SYSDA in DISP-Field

Postby mongan » Wed Feb 16, 2011 12:41 pm

Just to be sure you know it, there is VIO (virtual I/O) that can be used if it is defined in your system. This is for small data sets that are not written to disk but stay in a storage area, it is only for temporary data sets.
User avatar
mongan
 
Posts: 211
Joined: Tue Jan 11, 2011 8:32 pm
Has thanked: 1 time
Been thanked: 5 times

Re: SYSDA in DISP-Field

Postby olivermf » Wed Feb 16, 2011 3:24 pm

Hello Morgan,

that would be interesting.
How can I access this VIO, if it is configured?
I thought of a solution like UNIT=VIO if this is possible...
olivermf
 
Posts: 53
Joined: Tue Feb 08, 2011 4:28 pm
Has thanked: 3 times
Been thanked: 0 time

Re: SYSDA in DISP-Field

Postby NicC » Wed Feb 16, 2011 8:08 pm

I thought of a solution like UNIT=VIO if this is possible...

Instead of thinking - look. My first thought was to ask 'what does the JCL manual say' so I opened it up, entered a search for VIO and started hitting next there are lots of 'preVIOus'es! I eventually found an answer.
The problem I have is that people can explain things quickly but I can only comprehend slowly.
Regards
Nic
NicC
Global moderator
 
Posts: 3025
Joined: Sun Jul 04, 2010 12:13 am
Location: Pushing up the daisies (almost)
Has thanked: 4 times
Been thanked: 136 times

Re: SYSDA in DISP-Field

Postby olivermf » Wed Feb 16, 2011 11:57 pm

NicC wrote:... so I opened it up, entered a search for VIO and started hitting next there are lots of 'preVIOus'es! I eventually found an answer.

Great that you found an answer... You can feel proud and lucky about it now.

So what he found out, for constructive matters, is that the syntax is really

UNIT=VIO


Just like I assumed.

Thanks.

Kind Regards

Oliver
olivermf
 
Posts: 53
Joined: Tue Feb 08, 2011 4:28 pm
Has thanked: 3 times
Been thanked: 0 time

Re: SYSDA in DISP-Field

Postby NicC » Thu Feb 17, 2011 12:16 am

Well, I already knew the answer - just had to check that YOU could find it easily.
The problem I have is that people can explain things quickly but I can only comprehend slowly.
Regards
Nic
NicC
Global moderator
 
Posts: 3025
Joined: Sun Jul 04, 2010 12:13 am
Location: Pushing up the daisies (almost)
Has thanked: 4 times
Been thanked: 136 times

Re: SYSDA in DISP-Field

Postby mongan » Thu Feb 17, 2011 1:04 pm

Depending on how your SMS is set up this can be done automatically. Temp data sets are automatically assigned to VIO at our shop unless they are too large for it. This is a shop dependant set up, so you would have to ask your storage management.
User avatar
mongan
 
Posts: 211
Joined: Tue Jan 11, 2011 8:32 pm
Has thanked: 1 time
Been thanked: 5 times

Re: SYSDA in DISP-Field

Postby stevexff » Thu Feb 17, 2011 8:49 pm

VIO is all very well, but these days the cache controller on your disk subsystem will do most of what you want to achieve in VIO automatically. As an example:

About ten years back at a site with real 3390s, I ran a comparative test and discovered that with half track blocking, 60 buffers gave optimal performance for BSAM reads. Because it could slurp whole cylinders at a time into the buffers without moving the heads, it was a lot faster.

Nowadays the data are held differently, smeared across stripes on RAID with a huge cache buffer.

Last week I ran the same test, and discovered that once I'd got up to 10 buffers, adding any more didn't make an appreciable difference, and using 60 actually made it worse.

So I'd be interested to see what kind of data needs the speed of VIO these days, and whether it even makes a difference any more...
Steve
stevexff
 
Posts: 56
Joined: Wed Nov 10, 2010 7:48 pm
Has thanked: 0 time
Been thanked: 0 time

Next

Return to Stupid Questions