标签:建立 http grant temporary toe 自己 权限 sysdba file
sqlplus / as sysdba
NHHIS:////////////////////////////////////////////////////////////////////////////////////////////
create tablespace nhhis datafile ‘D:\11.2.0\userdata\nhhis.dbf‘ size 500m autoextend on;
CREATE USER nhhis IDENTIFIED BY nhhis45185298_wy DEFAULT TABLESPACE nhhis TEMPORARY TABLESPACE temp;
GRANT CONNECT TO nhhis;
GRANT RESOURCE TO nhhis;
GRANT dba TO nhhis;
imp nhhis/nhhis45185298_wy@orcl10 full=y file=D:\wy-databack\nhhis2020-01-19.dmp ignore=y
SXXNH:////////////////////////////////////////////////////////////////////////////////////////////
create tablespace sxxnh datafile ‘D:\11.2.0\userdata\sxxnh.dbf‘ size 500m autoextend on;
CREATE USER sxxnh IDENTIFIED BY sxxnh45185298_wy DEFAULT TABLESPACE sxxnh TEMPORARY TABLESPACE temp;
GRANT CONNECT TO sxxnh;
GRANT RESOURCE TO sxxnh;
GRANT dba TO sxxnh;
imp sxxnh/sxxnh45185298_wy@orcl10 full=y file=D:\wy-databack\sxxnh2020-01-19.dmp ignore=y
将DMP文件导入到ORACLE数据库时,使用imp命令。
1、首先,我们可以先建立自己的一个用户表空间,创建表空间的格式如下:
create tablespace test(表空间的名字)
datafile ‘D:\oracle\product\10.2.0\userdata\test.dbf‘ (这边可以写成oracle的某个路径下)
size 50m (初始大小)
autoextend on;(自动扩展)
2、接下来,我们可以创建一个自己的用户,创建格式如下:
CREATE USER utest (用户名)
IDENTIFIED BY upassword(密码)
DEFAULT TABLESPACE test(上面创建的表空间)
TEMPORARY TABLESPACE temp;(临时表空间就写temp即可)
3、然后,我们需要给自己的用户赋予权限来管理自己的表空间
GRANT CONNECT TO utest;
GRANT RESOURCE TO utest;
GRANT dba TO utest;--dba为最高级权限,可以创建数据库,表等。
以上三条语句的执行环境都需要进入oralce之后
cmd下进入oracle的方式
sqlplus system/密码 回车即可
4、接下来我们就可以将我们的dmp文件导入到我们自己的表空间中了,导入方式
imp usename/password@SID full=y file= d:\data\xxxx.dmp ignore=y
标签:建立 http grant temporary toe 自己 权限 sysdba file
原文地址:https://www.cnblogs.com/fkeyta/p/13197966.html