Hello all,
I have a file with following sample data
2009-08-26 05:32:01.65 spid5 Process ID 86:214 owns resources that are blocking processes on Scheduler 0.
2009-08-26 05:32:01.65 spid5 Process ID 86:214 owns resources that are blocking processes on Scheduler 0.
2009-08-26 05:32:01.65 spid5 Process ID 84:127 owns resources that are blocking processes on Scheduler 2.
2009-08-26 09:49:53.46 spid5 Process ID 86:214 owns resources that are blocking processes on Scheduler 0.
2009-08-26 15:51:28.51 spid5 Process ID 102:17 owns resources that are blocking processes on Scheduler 12.
2009-08-26 15:51:28.51 spid5 Process ID 102:17 owns resources that are blocking processes on Scheduler 12.
2009-08-26 15:51:28.51 spid5 Process ID 102:17 owns resources that are blocking processes on Scheduler 12.
I need to extract the unique Process IDs
So the output should be { though the order does not matter }
86
84
102
Its the unique values occuring between "Process ID" and the ":" on each line excluding the blank white space after ID . Process ID 102:
Any suggestions ?