--windows
|
create tablespace "TEST" datafile 'D:\dmdbms\data\TEST\TEST.DBF' size 128 ;
|
|
create user "TEST" identified by "Test@123" hash with SHA512 salt
|
encrypt by "123456"
|
default tablespace "TEST"
|
default index tablespace "TEST";
|
|
grant "PUBLIC","SOI" to "TEST";
|
|
grant "RESOURCE" to "TEST";
|