oralce数据库下,生成表空间、建用户、导数据操作

1、建立表空间

create tablespace  test_space   --表空间名称
datafile 'E:\tablespace\testspace.dbf' --表空间位置及生成的文件名称
size 20M--初始化大小
autoextend on;--自动扩展

2、建立用户

create user test --用户名
identified by 123456 --密码
default tablespace test_space   --创建的表空间
temporary tablespace temp  --临时表空间 temp

3、对使用表空间的用户进行授权操作

grant create session,create table,create view,create sequence,unlimited tablespace to test;
grant connect to test;
grant resource to test;
grant DBA to test;--dab最高权限,可以创建数据库,表等

4、导入数据到对应表空间

打开cmd,执行下面语句:
imp usename/password@localhost/orcl(表示SID)    --username需要是有权限的用户                                                            file= E:\Oracle_11g\app\Administrator\product\11.2.0\dbhome_1\database\xxxx.dmp full=y   --这里的路径依据实际路径进行调整

注:如果导入过程中遇到:IMP-00013: 只有 DBA 才能导入由其他 DBA 导出的文件
解决方法:alter user certification default role DBA;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值