在PL SQL里面执行SQL语句
*********************************************表空间
create tablespace FrameworkTest
logging
datafile 'E:\app\Administrator\product\11.2.0\dbhome_2\oradata\tablespace_wxg.dbf'
size 100m
autoextend on
next 10m maxsize 2048m
extent management local
*********************临时表空间
create temporary tablespace Framework_TMP
tempfile 'E:\app\Administrator\product\11.2.0\dbhome_2\oradata\framework_wxg_tmp.dbf'
size 100m
autoextend on
next 10m maxsize 2048m
extent management local
*************************************************新建用户
create user wxg_user identified by 123456 default tablespace FrameworkTest
*******************************************************给用户授权
grant connect,resource to wxg_user;
grant dba to wxg_user;
本文详细介绍了如何在PLSQL中创建表空间,包括框架测试表空间和临时表空间,以及如何为新建的用户wxg_user授权。
296

被折叠的 条评论
为什么被折叠?



