Re: COBOL v4.2 Books?

2010-02-15 Thread Alan Young

Chase, John wrote:

Noticed the books for Enterprise COBOL v4r2 are not available via the
public documentation URI http://www.ibm.com/systems/z/os/zos/bkserv.  Is
that omission intentional?  Enterprise COBOL v4r2 went GA last
August...

   -jc-


They on the COBOL documentation library web page at 
http://www-01.ibm.com/software/awdtools/cobol/zos/library/


Alan

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: How to calculate size of a PS dataset

2008-12-29 Thread Alan Young
On Tue, 23 Dec 2008 03:07:44 -0600, Parin Gangar  wrote:

>Hi,
>
>I need to calculate the size of a dataset in Megabytes / Gigabytes. I cannot
>download the file and check the same as I know the file size would be over 50
>GB and I don't want to fill up my hard disk.
>
>The dataset has following details -
>
>Device type . . . . :,3390
>Record format . . . :,FB
>Record length . . . :,1526
>Block size  . . . . :,7630
>1st extent tracks . :,15000
>Secondary tracks  . :,1500
>
>Current Allocation,
>,Allocated tracks  . :,297,141
>,Allocated extents . :,190
>, ,
>, ,
>Current Utilization,
>,Used tracks . . . . :,297,141
>,Used extents  . . . :,190
>
>I tried searching this on Google, but didn't get anything. I know that there is
>some formula for this.
>
>Any help will be much appreciated.
>
>Thanks,
>Parin

IBM's Interactive Storage Management Facility (ISMF) option 1 will provide
the allocated and used space of data sets in KB.  If your storage admins
don't have ISMF setup to be publically accessible, ask them to.  The inquiry
functions are useful.  (And if you're brave enough, it can run large
inquiries in batch (see NaviQuest).)

If the data set is SMS compressed, a LISTCAT on the dataset will show it's
compressed and uncompressed size in bytes in the COMP-USER-DATA-SIZE and
USER-DATA-SIZE fields.

Some third party products like FDR report and CA-DIsk can report on the
dataset's size.

Alan

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


Re: Downloading IBM manuals

2009-04-14 Thread Alan Young
David Alcock wrote:
> I just tried out using the DownloadThemAll Firefox add-on and you
> can easily get all manuals with the cryptic 8.3 filenames.   I found
> a PDF library for Python that is easy enough to use to display the
> titles by the file name.  See this web page I created:
>
>  http://www.planetmvs.com/mvsintosh/IBM_Manuals/index.html
>
> I'm probably missing a lot easier way of doing things.  I started
> searching for some type of freeware that displays PDF titles in a
> directory but have been unlucky so far.  Any suggestions?

There's a nifty option in DTA that will do that for you.  Change the
renaming mask from  *name*.*ext*  to  *text* *name*.*ext* and DTA
will put the link description in front of the unhelpful filename.
In the zOS Internet Library, the descriptions are the text in of the
link.  For example, "iea2u100.pdf" becomes  "z/OS V1R9.0 MVS Capacity
Provisioning User's Guide iea2u100.pdf".  The only problem with that
is it breaks the embedded PDF links.  That's fixable on a unix system
with symlinks.  You might be able to fix it on a Windows system with
a NTFS link helper utility, but I haven't tried.

Alan

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html