View previous topic :: View next topic |
Author |
Message |
chandra_vssv Beginner
Joined: 08 May 2005 Posts: 26 Topics: 12 Location: pune
|
Posted: Tue Oct 18, 2005 4:12 am Post subject: i want detail records ..... |
|
|
Hi ,
I have a report file as my input, i need only detailed records from this input file,could any body suggest me a solution
Code: |
Input file looks like this
===============================================
1REPORT-JNB04 STATISTICAL REPORT
1
REF- ON-LINE BUFFERS REPORT
10-13-05
SEE OP47
MAIN-MODULE-NAME : XY7SO400
1. GENERAL BUFFER DATA
----------------------------------------------------------------------------
Calling Module | short Seq | DB2 Num | Table Name
----------------------------------------------------------------------------
XY7SO400 KZ6011 1 k640_PROD_RUN_RT
2. CALLS COUNTERS
----------------------------------------------------------------------------------
TOTAL | S U C C E S S F U L L C A L L S
|-----------------------------------------------------------------------
CALLS | Last retrieval | Found cache | Not Found | Found main |
-----------------------------------------------------------------------------------
0 0 0 0 0
3. CALLS STATISTICS
(SUCCESSFULL BUFFER CALLS TO TOTAL CALLS IN %)
-------------------------------------------------------------------------------
Last retrieval | Found Cache | Not found cache | Found MB |Not FM
-------------------------------------------------------------------------------
00.0 00.0 00.0 00.0 00.0
===============================================
|
I want my out put like this, which contains only detail records
Code: |
XY7SO400 KZ6011 1 KAT640_PROD_RUN_RT
0 0 0 0 0
00.0 00.0 00.0 00.0 00.0
|
_________________ Regards,
Chandu |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
Posted: Tue Oct 18, 2005 4:46 am Post subject: |
|
|
chandra_vssv,
A simple cobol program will give you the desired results. or you can code a bunch of OMIT conditions for sort which will also give you the desired results.
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
chandra_vssv Beginner
Joined: 08 May 2005 Posts: 26 Topics: 12 Location: pune
|
Posted: Tue Oct 18, 2005 5:33 am Post subject: |
|
|
Hi kolusu,
Thank you. _________________ Regards,
Chandu |
|
Back to top |
|
|
|
|