Report filtering - Weird issue and interesting - UrgentPlease

Hi,

Could any one help me to extract data from a report.
I would like to get the two lines which are just below the separations

I have a report like this
--------------------------------------------------------------------------
Pid Command Inuse Pin Pgsp Virtual 64-bit Mthrd 16MB
504056 vxconfigd.5.3 26898 6682 4626 30746 N Y N
PageSize Inuse Pin Pgsp Virtual
s 4 KB 8178 6682 4498 11994
m 64 KB 1170 0 8 1172

Vsid      Esid Type Description              PSize  Inuse   Pin Pgsp Virtual

1d0ad d work shared library text m 1170 0 8 1172
-------------------------------------------------------------------------
Pid Command Inuse Pin Pgsp Virtual 64-bit Mthrd 16MB
368854 vxsvc 26333 6701 7375 33337 N Y N
PageSize Inuse Pin Pgsp Virtual
s 4 KB 7613 6701 7247 14585
m 64 KB 1170 0 8 1172

--------------------------------------------------------------------------
Pid Command Inuse Pin Pgsp Virtual 64-bit Mthrd 16MB
577624 ksh 25890 6677 3910 29611 N N N
PageSize Inuse Pin Pgsp Virtual
s 4 KB 7170 6677 3782 10859
m 64 KB 1170 0 8 1172

I would like to get 2 lines which are just below the separation. you can see the lines in bold.
Appreciate quicker reponse.
Thanks in advance.
Ajilesh

nawk 'c&&c--; /^--*$/ {c=2;next}' myReportFile

Thanks vgersh99

I have found a solution like this too and works
sed -n '/-----/,/PageSize/p' /home/users/thayata/scmon |grep -v PageSize