I'm not a database guy, yet I've been dropped with this task.
I'm trying to create a new account that has it's own tables and stuff and I'm having a real hard time. The GUI/web interface to teh db is down..so I have to do everything through sqlplus
so far I've logged in as the admin and done
create user username identified by password;
grant connect to username;
grant create tbale to username;
so then i login as the new user..i'm able to connect....but I can't create tables saying no priveldges on tablepace 'users'
what do i need to do in order to get this new account up and running..I need to able to create delete insert drop select from tables etc
I'm trying to create a new account that has it's own tables and stuff and I'm having a real hard time. The GUI/web interface to teh db is down..so I have to do everything through sqlplus
so far I've logged in as the admin and done
create user username identified by password;
grant connect to username;
grant create tbale to username;
so then i login as the new user..i'm able to connect....but I can't create tables saying no priveldges on tablepace 'users'
what do i need to do in order to get this new account up and running..I need to able to create delete insert drop select from tables etc