oracle创建表空间、用户、导入导出

表空间:

--创建
create tablespace xxname
datafile '$oracle_home$/oradata/orcl/xx.dbf'
size 50M
uniform size 128k
--删除(同时删除物理文件)
drop tablespace xxname including contents and datafiles; 

创建用户并授权:

--创建用户并指定表空间
create user xxuser identified by xxpwd
default tablespace test_data
temporary tablespace test_temp;
--给用户授予权限,下面两种角色权限就够用,要导入到处的话还需要dba角色权限
grant connect,resource to xxuser;

 

导入导出:

--PLSQL Developer:tools->export user objects只能导出表 
--导出的是整个数据库,包括了表、视图、触发器等所有内容和数据
exp name/password@dbname file=d:/filename.dmp 
--导入,name用户有dba角色权限
imp name/password@dbname file=d:filename.dmp

posted on 2011-08-18 23:00  山上明月  阅读(231)  评论(0编辑  收藏  举报