使用plsql developer怎么对oracle增加表空间和用户

使用plsql developer怎么对oracle增加表空间和用户,第1张

创建空间

create tablespace tbs1 datafile '/u01/app/oracle/oradata/orcl/tbs01.dbf' size 20m

如果想往表空间里面加数据文件,可以执行:

Alter tablespace tablespace_name add datafile '/u01/app/oracle/oradata/orcl/tbs02.dbf' size 100M autoextend on next 10m maxsize unlimited

创建用户

create user username identified by password default tablespace users

有不懂的可以继续交流

新建表空间,登录名和密码

--请尽量把表空间和别的系统分离,这里以Search为例子,登录名和密码以test为例子

create tablespace Search

logging

datafile 'D:\oracle\product\10.2.0\oradata\orcl\Search.ora' size 15M extent

management local segment space management auto

--删除test用户

drop user test cascade

--创建test用户

create user test

identified by test

default tablespace Search

temporary tablespace TEMP

--为用户授权

grant connect,resource,dba to test

commit

--修改表空间大小

ALTER DATABASE DATAFILE 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\Search.ora' AUTOEXTEND ON NEXT 15K MAXSIZE UNLIMITED

commit

plsql远程查看表空间创建路径

select *from dba_data_files


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11607494.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存