>데이터 베이스 >MySQL 튜토리얼 >Oracle 创建表用户、空间

Oracle 创建表用户、空间

WBOY
WBOY원래의
2016-06-07 14:57:541090검색

oracle创建用户、表空间 无 /*查看表空间文件位置*/select *from dba_data_files;--创建arcgis 表空间、用户/*第1步:创建临时表空间 */create temporary tablespace test_temp tempfile '/home/oracle/app/orcl/test_temp.dbf' //上面查询出的表空间文件路径

oracle 创建用户、表空间
/*查看表空间文件位置*/
select *from dba_data_files;

--创建arcgis 表空间、用户
/*第1步:创建临时表空间  */
create temporary tablespace test_temp  
tempfile '/home/oracle/app/orcl/test_temp.dbf' //上面查询出的表空间文件路径,也可以自定义
size 50m  //初始大小
autoextend on  
next 30m maxsize unlimited;//每次自增大小 
 
/*第2步:创建数据表空间  */
create tablespace test  
logging  
datafile '/home/oracle/app/orcltest.dbf' 
size 50m  
autoextend on  
next 30m maxsize unlimited;  
 
/*第3步:创建用户并指定表空间  */
create user testuser identified by testpass
default tablespace test  
temporary tablespace test_temp; 

/*第4步:给用户授予权限  */
grant connect,resource to testuser;
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
이전 기사:mysql limit用法다음 기사:Oracle中tnsnames.ora配置