I am trying to extract specific values from a logfile like below :
Table "xxx"."xxxx":
3785568 Rows successfully loaded.
0 Rows not loaded due to data errors.
0 Rows not loaded because all WHEN clauses were failed.
0 Rows not loaded because all fields were null.
Bind array size not used in direct path.
Column array rows : 5000
Stream buffer bytes: 256000
Read buffer bytes: 1048576
Total logical records skipped: 0
Total logical records read: 3785568
Total logical records rejected: 0
Total logical records discarded: 0
Total stream buffers loaded by SQL*Loader main thread: 878
Total stream buffers loaded by SQL*Loader load thread: 796
Run began on Fri Sep 01 04:00:26 2017
Run ended on Fri Sep 01 04:04:45 2017
Elapsed time was: 00:04:19.24
CPU time was: 00:00:08.56
What i would like to retrieve are :
3785568 as number_rows
Sep 01 04:00:26 2017 as start_time
Sep 01 04:04:45 2017 as end_time
How is this possible this extraction with awk?
Any help would be really much appreciated :)
Thank you very much for your time.