Oracle PL/SQL/User Previliege/Drop User

Материал из SQL эксперт
Версия от 09:55, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Create a user and then drop it

create user sqle identified by password;
grant create session, dba to sqle;
connect sqle/password;
--DROP USER sqle;



Create user, grant permission and drop user

 
SQL>
SQL>
SQL> create user dropme
  2      identified by doomed
  3      default tablespace users
  4      temporary tablespace temp
  5      quota unlimited on users
  6      /
User created.
SQL>
SQL> grant create session, create table
  2      to dropme
  3      /
Grant succeeded.
SQL>
SQL> drop user dropme;
User dropped.
SQL>
SQL>



If Tom owns a table. Use the CASCADE keyword to drop it

 

drop user Tom cascade;