I have a server that was created for me. It has a circuit called "test" on it.
I logged in with the root user and created a new scheme called "WEB".
create schema WEB;
What I want to do now is to have a user who can only see this new scheme.
So, I created the user like this:
create user webtestuser identified by 'webtestuser'; grant select, insert, update, delete on WEB.* to webtestuser;
The problem is that when I log in with a new user, I still see the test pattern. Even when I “nullify everything” on the user, this diagram is still visible.
Anything I miss here?
Thanks!
source share