oracle12c 新建表空间
生活随笔
收集整理的這篇文章主要介紹了
oracle12c 新建表空间
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
第1步:創(chuàng)建臨時表空間?
create temporary tablespace jeeplus_temp tempfile 'D:\app\Administrator\virtual\product\12.2.0\dbhome_1\database\jeeplus_temp.dbf' size 10m autoextend on next 10m maxsize 20480m extent management local;第2步:創(chuàng)建數(shù)據(jù)表空間
create tablespace jeeplus logging datafile 'D:\app\Administrator\virtual\product\12.2.0\dbhome_1\database\jeeplus.dbf' size 10m autoextend on next 10m maxsize 20480m extent management local;第3步:創(chuàng)建用戶并指定表空間
create user jeeplus identified by jeeplus321 default tablespace jeeplus temporary tablespace jeeplus_temp;第4步:給用戶授予權限
grant connect,resource,dba to jeeplus;?
轉載于:https://www.cnblogs.com/donghb/p/9989608.html
總結
以上是生活随笔為你收集整理的oracle12c 新建表空间的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Linux内存描述之概述--Linux内
- 下一篇: python-pdf添加水印