on 2012 Apr 01 7:27 AM
Thanks to latest SA EBF, now is very convenient to get any actual compound query plans immediately, but I have some suggestions.
Due security reasons and for strong interface type checking, all my stored procedures divided to some independent packages with different owners.
create package dba.core_package; create procedure dba_proc(...) at dba.core_package grant execute dba_proc to user1;
create package user1.user_package; create procedure user1.user_proc(...) at user_package -- remark: user_proc calls dba_proc() within
When user1 invoke and getting plan of user1.user_proc(…)
,
select plan(user1.user_package.user_proc(..))
than query paln also have full statistics for dba_proc
and any procedure invoked from dba_proc
.
Is it possible to extend granting security rules for hiding/unhiding statistics for nested stored procedures?
SA 12.0.1.0412
Thanks for the suggestion, Alexey. We will investigate potential options.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
67 | |
10 | |
10 | |
10 | |
10 | |
8 | |
8 | |
6 | |
5 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.