Hide tables in Oracle XE database?

Up vote 2 down vote favorite share g+ share fb share tw.

I'm using Oracle XE but I would like to log in as a user than can create tables, contraints etc., but who cannot view all of the other system tables and stuff that you see when you log in with the system account. How can I achieve this? Oracle oracle-xe link|improve this question asked May 25 '11 at 21:45John Connor1,36121225 69% accept rate.

You need to create a new user with: CREATE USER xxx IDENTIFIED BY yyyy; From there, issue GRANT for the privileges you want to give the user: GRANT CREATE SESSION TO xxx; GRANT CREATE TABLE TO xxx; GRANT CREATE VIEW TO xxx; etc. See the SQL Reference documentation for all the privileges you can grant. User xxx will only be able to see their own objects and objects they have been granted privileges on.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions