首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

oracle 创设表空间、用户

2012-12-31 
oracle 创建表空间、用户???/*分为四步 *//*第1步:创建临时表空间 ?*/create temporary tablespace common_

oracle 创建表空间、用户

?

?

?

/*分为四步 */

/*第1步:创建临时表空间 ?*/

create temporary tablespace common_temp ?

tempfile 'D:\oracle\product\10.2.0\oradata\common\common_temp.dbf'?

size 50m ?

autoextend on ?

next 50m maxsize 20480m ?

extent management local; ?

?

/*第2步:创建数据表空间 ?*/

create tablespace common_data ?

logging ?

datafile 'D:\oracle\product\10.2.0\oradata\common\common_data.dbf'?

size 50m ?

autoextend on ?

next 50m maxsize 20480m ?

extent management local; ?

?

/*第3步:创建用户并指定表空间 ?*/

create user myceibs identified by myceibs ?

default tablespace common_data ?

temporary tablespace common_temp; ?

?

?

/*第4步:给用户授予权限 ?*/

grant connect,resource,dba to myceibs;

?

?

?

热点排行