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

下令创建、删除表空间,创建、授权用户,导入数据

2013-03-22 
命令创建、删除表空间,创建、授权用户,导入数据create tablespace zcxm6 datafile E:\app\tablespace\hn3.d

命令创建、删除表空间,创建、授权用户,导入数据
create tablespace zcxm6 datafile 'E:\app\tablespace\hn3.dbf' size 300m autoextend on 

next 10m maxsize unlimited;

create user name identified by orcl default tablespace zcxm6;
grant connect,resource,dba to name;

imp userid=name/password full=y file=F:\datasource\hncq_zcxm6_0315.dmp

DROP TABLESPACE tablespacename INCLUDING CONTENTS  AND DATAFILES CASCADE CONSTRAINTS;
drop user username cascade;

热点排行