Bruzé 0 Report post Posted August 20, 2013 Hi, I´m curious about user privileges in oracle.I´ve been search on internet but a i can´t get the information I just wanna know what kind of privileges for user to access oracle database by Wapt??For Database Performance... Just a user with Grant to create session is enough??? Thanks all. Quote Share this post Link to post Share on other sites
sergei 0 Report post Posted August 22, 2013 User should have privileges to do SELECT in the system table "v$sysstat". Quote Share this post Link to post Share on other sites
Bruzé 0 Report post Posted August 23, 2013 Thanks for the answer!! You are right, searching on wapt i found a Function SQLMonitor with this: function SQLMonitor() { return counter.SQLGetValue("SELECT \"VALUE\" FROM v$sysstat WHERE \"STATISTIC#\"=230"); } I just need to confirm this to pass the information. Thanks again... =) Quote Share this post Link to post Share on other sites
sergei 0 Report post Posted August 26, 2013 Yes, WAPT uses SQL queries to collect a performance data from Oracle server. And you can add your own counters. Quote Share this post Link to post Share on other sites