Hi,
This is part of a post from Data access forum titled "Access logfile from UNIX server in CR XI", posted yesterday.
I have been trying to get the data in CR today. I have had good success in that respect though there are some "exception handling" issues I need some advice on.
I use CR 11 and the source file is a text file and I select Access / Excess and text file in the options. The logfile has thousands of lines of data and each line has lots of unwated text. I show 4 sample lines from the file below
All we want to use from the above lines is the date from the beginning of the line and the text that is enclosed in the curved brackets. Sample CR output will be something similar to the following: (The last number shown here is the count of each category displayed in descending order, which is already being done now).
Now, things seem OK except on tow scenarios as follows:
1 Whenever there is a a comma character encountered within the brackets, I get only the part of the string that is after the left bracket and before the comma. It looks like when CR comes across a comma, it seems to skip the rest and go to the next line?
2 When the text within brackets is enclosed in a double quotes ("), the whole selection is returned as blank entry and returned with empty result.
I am not sure what could be the reason for this.
Some of the formulae used are:
to get all characters to the right of the left bracket:
@left1 - mid({Oct_2006_txt.Title},instr({Oct_2006_txt.Title},"(")+1)
To get the characters to the right of the right bracket:
@rightt1 - trimright(mid({Oct_2006_txt.Title},instr({Oct_2006_txt.Title},")",1)+1))
to get the required characters:
Replace ({@left1},{@Right1},"")
Any suggestions on how the above issues can be sorted out would be greatly appreciated.
This is part of a post from Data access forum titled "Access logfile from UNIX server in CR XI", posted yesterday.
I have been trying to get the data in CR today. I have had good success in that respect though there are some "exception handling" issues I need some advice on.
I use CR 11 and the source file is a text file and I select Access / Excess and text file in the options. The logfile has thousands of lines of data and each line has lots of unwated text. I show 4 sample lines from the file below
Code:
2006.10.09 01:20:22 [ExecuteThread: '16' for queue: 'weblogic.kernel.Default'] a.s.xxx.com [5] weblogic DocDeterminationEJB.keywordSearch NO KEYWORD MATCH: (Tooling) - FILTER: 3
2006.10.09 02:28:34 [ExecuteThread: '16' for queue: 'weblogic.kernel.Default'] a.s.xxx.com[5] weblogic DocDeterminationEJB.keywordSearch NO KEYWORD MATCH: (INSERTS) - FILTER: 2
2006.10.09 04:42:48 [ExecuteThread: '5' for queue: 'weblogic.kernel.Default'] a.s.xxx.com [5] weblogic DocDeterminationEJB.keywordSearch NO KEYWORD MATCH: (animal DNA) - FILTER: 2
2006.10.09 05:18:21 [ExecuteThread: '6' for queue: 'weblogic.kernel.Default'] a.s.xxx.com [5] weblogic DocDeterminationEJB.keywordSearch NO KEYWORD MATCH: (ibg) - FILTER: 3
All we want to use from the above lines is the date from the beginning of the line and the text that is enclosed in the curved brackets. Sample CR output will be something similar to the following: (The last number shown here is the count of each category displayed in descending order, which is already being done now).
Code:
Date Category Count
2006.10.09 Tooling 20
2006.10.09 INSERTS 18
2006.10.09 animal DNA 16
2006.10.09 ibg 15
Now, things seem OK except on tow scenarios as follows:
1 Whenever there is a a comma character encountered within the brackets, I get only the part of the string that is after the left bracket and before the comma. It looks like when CR comes across a comma, it seems to skip the rest and go to the next line?
2 When the text within brackets is enclosed in a double quotes ("), the whole selection is returned as blank entry and returned with empty result.
I am not sure what could be the reason for this.
Some of the formulae used are:
to get all characters to the right of the left bracket:
@left1 - mid({Oct_2006_txt.Title},instr({Oct_2006_txt.Title},"(")+1)
To get the characters to the right of the right bracket:
@rightt1 - trimright(mid({Oct_2006_txt.Title},instr({Oct_2006_txt.Title},")",1)+1))
to get the required characters:
Replace ({@left1},{@Right1},"")
Any suggestions on how the above issues can be sorted out would be greatly appreciated.