It might be legit.
Have a look at tbstat -u for users with large disk activity

Signature
Paul Watson #
Oninit Ltd # Growing old is mandatory
Tel: +44 1436 672201 # Growing up is optional
Fax: +44 1436 678693 #
Mob: +44 7818 003457 #
www.oninit.com #
By far, the highest I/O are report queries.
> It might be legit.
>
[quoted text clipped - 25 lines]
> > 95966 135 1614122389 1 0 2063 5962
> > 8418822
Paul Watson - 27 Mar 2004 00:32 GMT
I'd suspect a missing index, set explain on and look for
sequential scans
> By far, the highest I/O are report queries.
>
[quoted text clipped - 40 lines]
> > Mob: +44 7818 003457 #
> > www.oninit.com #

Signature
Paul Watson #
Oninit Ltd # Growing old is mandatory
Tel: +44 1436 672201 # Growing up is optional
Fax: +44 1436 678693 #
Mob: +44 7818 003457 #
www.oninit.com #
Art S. Kagel - 29 Mar 2004 15:54 GMT
> By far, the highest I/O are report queries.
If those are 4GL reports, look for ORDER BY sections in the report function
that are not REPORT BY ... EXTERNAL. If you can put the ORDER BY criteria
into the query supplying the data and make the report's ORDER BY be EXTERNAL
that will reduce IO's not reported by the engine hugely.
Art S. Kagel
casey - 29 Mar 2004 16:10 GMT
> > By far, the highest I/O are report queries.
> >
[quoted text clipped - 4 lines]
>
> Art S. Kagel
Art, thanks, great suggestion!