oracle创建表空间、用户、导入导出
表空间:
--创建
create tablespace xxnamedatafile '$oracle_home$/oradata/orcl/xx.dbf'
size 50Muniform size 128k--删除(同时删除物理文件)
drop tablespace xxname including contents and datafiles;
创建用户并授权:
--创建用户并指定表空间
create user xxuser identified by xxpwddefault tablespace test_datatemporary 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