Hi Shahzad,
I reckon the bit in the docs you want to pay closest attention to is at...
http://docs.splunk.com/Documentation/Splunk/6.4.1/Data/Configureindex-timefieldextraction#Define_a_new_indexed_field
Which leads me to conclude you want something like the following. The RegEx is as per the emails you and I exchanged.
Add this to transforms.conf...
[indexed-extractions]
REGEX = ^([^,]*?),([^,]*?),([^,]*?),([^,]*?),([^,]*?),([^,]*?),([^,]*?),([^,]*?),([^,]*?),([^,]*?),([^,]*?),([^,]*?),([^,]*?),([^,]*?),([^,]*?),([^,]*?),([^,]*?),([^,]*?),(.*)
FORMAT = field8::"$8" field9::"$9" field11::"$11"
WRITE_META = true
Add this to props.conf...
[whatever-the-name-of-your-sourcetype]
TRANSFORMS-extractions = indexed-extractions
Add this to fields.conf...
[field8]
INDEXED=true
[field9]
INDEXED=true
[field11]
INDEXED=true
Good luck!
... View more