Revision: 16493
Updated Code
at August 6, 2009 06:17 by kamilch
Updated Code
-- creates new user JOHN with 123456 password -- and grants all privileges to him CREATE user JOHN IDENTIFIED BY "123456" DEFAULT tablespace USERS; GRANT ALL PRIVILEGES TO JOHN;
Revision: 16492
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at August 6, 2009 06:07 by kamilch
Initial Code
-- creates new user JOHN with 123456 password -- and grants all privileges to him CREATE user JOHN IDENTIFIED BY '123456' DEFAULT tablespace USERS; GRANT ALL PRIVILEGES TO JOHN;
Initial URL
Initial Description
Initial Title
Create new Oracle user
Initial Tags
Oracle
Initial Language
PL/SQL