更新时间:2024-01-25 GMT+08:00
数据库导入
智慧教育数据中台、基础支撑平台(统一用户认证管理、数字校园统一信息门户、岗位角色管理、)、校园管理平台。
| 数据库导入步骤 | 命令 |
|---|---|
| 进入数据库创建目录、用户表空间和用户 | sqlplus / as sysdba(下面依次输入以下命令后回车) > create directory gjtdb as '/home/oracle/'; > create tablespace tp datafile '/oracle/oradata/ORCL/orclpdb1/tp01.dbf' size 50m autoextend on next 50m maxsize unlimited > create user tp_sems identified by ****** default tablespace tp temporary tablespace temp; > grant dba to tp_sems; > exit |
| 上传准备好的数据备份dmp文件,用导入命令进行导入 | impdp tp_sems/******** directory=gjtdb dumpfile= gjtdb.dmp full=y |
| 等待命令执行完成后数据就成功导入 | / |
父主题: 实施步骤