Rightly said!!!

If you are using windows, what you can even do is get the required stat into a temp table and query that table to get a report which looks something like this.


Num of rows:

Object: Prod: Test: dev:

emp 20 18 200
dept 5 2 9

Num of col

object Prod Test Dev:

emp 6 4 6
dept 3 3 5



Any way this requires selecting different types of info (row,columns) etc and insert them into a temp table to print out a report in the above format.

Badrinath