oracle创建用户

 --创建表空间:  
create tablespace test_tablespace  
   datafile 'E:\oracleDB\test.dbf'   
   size 500m;  
  
--创建用户:  
create user test  
    identified by test  
    default tablespace test_tablespace;  
  
--给用户赋权限:  
grant dba to test;  

你可能感兴趣的:(oracle)