【Oracle】创建用户及设定权限


create user ufo identified by 1234;
grant create session to ufo;
grant create tablespace to ufo; 
grant create table to ufo;
grant drop any table to ufo;
grant insert any table to ufo;
grant update any table to ufo;
grant all privileges to ufo;
grant dba to ufo;
create tablespace test datafile 'D:\app\horn1\oradata\test.txt' size 10m;

 

参考资料:

https://www.iteye.com/blog/1084647490-2255426

--END-- 2019年11月9日15:30:49


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM