Re: Logon statistic

2008-04-21 Thread Walter Marguccio
- Original Message 
From: Elardus Engelbrecht [EMAIL PROTECTED]

'IRR67652I The utility processed 0 SMF type xx records' 

I know why you can't get any records.

First RACF and IRRADU00 cannot help you with VALID logon stats because 
Complete only write SMF records for each violations.

Elardus,

I meant I can't get *any* records at all, not only the ones from Com-plete.
IFASMFDP shows that records have been written, but IRRADU00 claims not.
I'll have a better look at the job.

Thanks for the info about Com-Plete.

Walter Marguccio
z/OS Systems Programmer
Munich - Germany


  __
Sent from Yahoo! Mail.
A Smarter Email http://uk.docs.yahoo.com/nowyoucan.html

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



Re: Logon statistic (solved)

2008-04-21 Thread Walter Marguccio
- Original Message 
From: Walter Marguccio [EMAIL PROTECTED]

I meant I can't get *any* records at all, not only the ones from Com-plete.

IRRADU00 works fine and is a good starting point. If you code a TYPE(000:255)
instead of TYPE(000,255) it works even better. :-(
I'll make a call to SAG to see how can I do with Com-Plete

Thanks to all who answered.

Walter Marguccio
z/OS Systems Programmer
Munich - Germany


  __
Sent from Yahoo! Mail.
A Smarter Email http://uk.docs.yahoo.com/nowyoucan.html

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


  __
Sent from Yahoo! Mail.
A Smarter Email http://uk.docs.yahoo.com/nowyoucan.html

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



Logon statistic

2008-04-18 Thread Walter Marguccio
Estimated lists (x-posted to ibm-main and RACF),

I've been asked to collect statistics on how often and how long a given user 
has looged on
on our z/OS system either via TSO or our CICS-like OLTP system.
Can anyone point to the right method ?

TIA.

Walter Marguccio
z/OS Systems Programmer
Munich - Germany



  ___ 
Yahoo! For Good helps you make a difference  

http://uk.promotions.yahoo.com/forgood/

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



Re: Logon statistic

2008-04-18 Thread McKown, John
 -Original Message-
 From: IBM Mainframe Discussion List 
 [mailto:[EMAIL PROTECTED] On Behalf Of Walter Marguccio
 Sent: Friday, April 18, 2008 7:29 AM
 To: IBM-MAIN@BAMA.UA.EDU
 Subject: Logon statistic
 
 
 Estimated lists (x-posted to ibm-main and RACF),
 
 I've been asked to collect statistics on how often and how 
 long a given user has looged on
 on our z/OS system either via TSO or our CICS-like OLTP system.
 Can anyone point to the right method ?
 
 TIA.
 
 Walter Marguccio

SMF data. RACF records that. You can get a basic report from RACFRW, but
it is rather difficult to read. You could look at IRRADU00 output. That
function takes the SMF data and transforms it into a flat file which
is, relatively, easy to read.

Look in SYS1.SAMPLIB(IRRICE) for some examples of RACFICE, as it is
called.

For just TSO, I would use SMF record type 30, subtype 5 (job end). In
one record, it contains the reader start date and time, which is the
LOGON date and time, as well as the job end date and time which is the
LOGOFF time.

--
John McKown
Senior Systems Programmer
HealthMarkets
Keeping the Promise of Affordable Coverage
Administrative Services Group
Information Technology

The information contained in this e-mail message may be privileged
and/or confidential.  It is for intended addressee(s) only.  If you are
not the intended recipient, you are hereby notified that any disclosure,
reproduction, distribution or other use of this communication is
strictly prohibited and could, in certain circumstances, be a criminal
offense.  If you have received this e-mail in error, please notify the
sender by reply and delete this message without copying or disclosing
it. 

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



Antwort: Logon statistic

2008-04-18 Thread Albert Klimek
Take a look at the session manager log. Our shop use Netview Access. 
I wrote a REXX to do this. if you want, I send it offline. 
Albert 

VERLAGSGRUPPE WELTBILD GMBH
Sitz der Gesellschaft: Augsburg
Handelsregister Augsburg HRB 6035 
Ust-ID-Nr: DE 127501299

Geschäftsführung:
Carel Halff (Vorsitzender), Dr. Klaus Driever, Werner Ortner, Herbert Zoch

Vorsitzender des Aufsichtsrates:
Dr. Klaus Donaubauer


Re: Logon statistic

2008-04-18 Thread Tom Marchant
On Fri, 18 Apr 2008 05:28:56 -0700, Walter Marguccio wrote:

I've been asked to collect statistics on how often and how long a given user 
has looged on
on our z/OS system either via TSO or our CICS-like OLTP system.
Can anyone point to the right method ?

SMF for TSO.
For your CICS-like OLTP system you will need to contact the vendor.  
Perhaps if you tell us who the vendor is, someone will know.  If it's in-house, 
you are on your own.

-- 
Tom Marchant

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




Re: Logon statistic

2008-04-18 Thread Walter Marguccio
- Original Message 

From: McKown, John [EMAIL PROTECTED]

You could look at IRRADU00 output. That function takes the SMF
data and transforms it into a flat file which is, relatively, easy to read.

John, I tried it with IRRADU00 pointing to my April's SMF data collected so far.
But I get 'IRR67652I The utility processed 0 SMF type xx records' 
for all the records the utility is supposed to analyze. I can't understand what 
I'm missing here. The SYSPRINT does show plenty of records type 30, 80, 81 or 83
being collected ...

Look in SYS1.SAMPLIB(IRRICE) for some examples of RACFICE, as it is called.

That would be great, but we are not licenced fot DFSORT. We have CA-Sort, 
and wit this product you can't obtain the sort of reports DFSORT nicely writes.


Walter 


  __
Sent from Yahoo! Mail.
A Smarter Email http://uk.docs.yahoo.com/nowyoucan.html

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



Re: Logon statistic

2008-04-18 Thread Walter Marguccio
- Original Message 

From: Tom Marchant [EMAIL PROTECTED]

For your CICS-like OLTP system you will need to contact the vendor.  
Perhaps if you tell us who the vendor is, someone will know.  

Tom,

we have Com-Plete from Software AG as OLTP.

Walter Marguccio
z/OS Systems Programmer
Munich - Germany


  __
Sent from Yahoo! Mail.
A Smarter Email http://uk.docs.yahoo.com/nowyoucan.html

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



Re: Logon statistic

2008-04-18 Thread Elardus Engelbrecht
Walter Marguccio wrote:

cross-posted between IBM-MAIN and RACF-L

we have Com-Plete from Software AG as OLTP.
'IRR67652I The utility processed 0 SMF type xx records' 

I know why you can't get any records.

First RACF and IRRADU00 cannot help you with VALID logon stats because 
Complete only write SMF records for each violations.

Depending on your Com-plete settings you need to post process your SMF 
records produced from Com-plete, if you got Com-plete set up to save SMF 
records in the first place. 

I've written an Assembler program to extract them and then post-process with 
ICETOOLS for further processing. Sorry I can't provide the sources and 
modules, you'll have to write them...

Groete / Greetings

Elardus Engelbrecht

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