Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

setting grant for user on CTXSYS.CTX_DLL

Status
Not open for further replies.

nyck

Technical User
Mar 10, 2004
447
GB
Hello,

I have to set grant for user on CTXSYS.CTX_DDL for bugzilla. Generally speaking it seems that I need to have access to
CTX tables such as CTXSYS.CTX_PREFERENCES but user arbor does not see them. How do I go about doing this?


 

Login as CTXSYS and do the grant(s)!
[surprise]


----------------------------------------------------------------------------
The person who says it can't be done should not interrupt the person doing it. -- Chinese proverb
 
So once logged in as CTXSYS is it just a case of doing the following:-

grant execute on ctxsys.ctx_ddl to public

As you can tell from my questions I'm not a dba:-(
 
Is ctxsys.ctx_ddl a stored proc ? It will be execute if it's a stored proc; otherwise, it will be select, (update, insert, delete).
 


Code:
GRANT EXECUTE ON CTXSYS.CTX_DDL TO PUBLIC;
[noevil]


----------------------------------------------------------------------------
The person who says it can't be done should not interrupt the person doing it. -- Chinese proverb
 
Still having no luck with this, there is no CTXSYS user within this database and someone mentioned I need to load the context module, how do I go about doing this?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top