Hello All,
I have a users audit table (Oracle 8.17's aud$) that I would like to produce a count of how many entries there are for each USERID.
Table: aud$
Field: userid
I have done the below but would take forever to do for all the userid's.
SELECT count(*) FROM aud$ WHERE userid = 'SmithJ';
What can you suggest?
Thanks,
Michael42
I have a users audit table (Oracle 8.17's aud$) that I would like to produce a count of how many entries there are for each USERID.
Table: aud$
Field: userid
I have done the below but would take forever to do for all the userid's.
SELECT count(*) FROM aud$ WHERE userid = 'SmithJ';
What can you suggest?
Thanks,
Michael42