If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
If I want to monitor few tables in such a way that I get the userids of the users who accessed the tables, number of times the table was hit etc.
I am using 7.31 IDS FD5.
Can somebody sugest.
database sysmaster;
select dbsname, tabname, sum(pagreads) Reads, sum(pagwrites) Writes
from sysptprof
where dbsname="stores" -- ur db name
group by dbsname, tabname
Thanks for your suggestions. But the query will not give me the username who is accessing the table. Further I want to know pagreads and pagwrites mean number of rows selected from the table or number of times the table has been hit.
Can Informix-Ispy be used to monitor specific tables or we have to go for the complete database.