现在的位置: 首页 > 综合 > 正文

oracle创建表空间、用户及授权

2014年10月08日 ⁄ 综合 ⁄ 共 542字 ⁄ 字号 评论关闭
/*分为四步 */
/*第1步:创建临时表空间  */
create temporary tablespace phonemgr_temp  
tempfile 'D:\oracle\product\10.2.0\oradata\phonemgr\phonemgr_temp.dbf' 
size 50m  
autoextend on  
next 50m maxsize 20480m  
extent management local;  
 
/*第2步:创建数据表空间  */
create tablespace phonemgr_data  
logging  
datafile 'D:\oracle\product\10.2.0\oradata\phonemgr\phonemgr_data.dbf' 
size 50m  
autoextend on  
next 50m maxsize 20480m  
extent management local;  
 
/*第3步:创建用户并指定表空间  */
create user phonemgr identified by password  
default tablespace phonemgr_data  
temporary tablespace phonemgr_temp;  
 
/*第4步:给用户授予权限  */
grant connect,resource,dba to phonemgr;

抱歉!评论已关闭.