plsql创建表空间创建用户及赋予权限及删除表空间和用户

create tablespace govinfosend datafile 'D:\developspace\oracle\govinfosend' size 1000m autoextend on  
next 50m maxsize 20480m  
extent management local;

create user dtsx_file identified by dtsx_file default tablespace test quota 1000m on users;

grant all privileges to dtsx_file;

https://jingyan.baidu.com/article/e5c39bf5c6d3ca39d76033a7.html

猜你喜欢

转载自blog.csdn.net/weixin_41402352/article/details/82255956