Create a user and then drop it : Drop User « User Previliege « Oracle PL / SQL






Create a user and then drop it

create user java2s identified by password;

grant create session, dba to java2s;

connect java2s/password;

--DROP USER java2s;


           
       








Related examples in the same category

1.If Tom owns a table. Use the CASCADE keyword to drop it
2.Create user, grant permission and drop user