Chris Saxon - Apr 10
#quiz
This time I:
- Create a user
- Connect to it
- I can create tables, views, etc.
- Do "something"
- I can now create NOTHING!
Script:
grant dba to u identified by u;
conn u/u
create table this_works (c1 int);
???
create table this_does_not ( c1 int);
Why?
Rules:
- No other objects needed
- No other sessions
#quiz
This time I:
- Create a user
- Connect to it
- I can create tables, views, etc.
- Do "something"
- I can now create NOTHING!
Script:
grant dba to u identified by u;
conn u/u
create table this_works (c1 int);
???
create table this_does_not ( c1 int);
Why?
Rules:
- No other objects needed
- No other sessions