1.--创建表空间
create tablespace hisdb2020 --表空间名称
datafile 'D:\app\lt\product\11.2.0\hisdb2020.dbf' --地址
size 22100m -- 表空间大小
autoextend on
next 100m --- 增长大小
创建临时表空间
create tablespace xin_datafile
datafile ‘D:\app\lt\product\11.2.0\hisdb2020.dbf’ size 500M --存储地址 初始大小500M
autoextend on next 10M maxsize 200M --每次扩展10M,无限制扩展 unlimited
extent management local autoallocate
segment space management auto;
2.--删除表空间
drop tablespace gypts including contents and datafiles
3.--修改表空间大小:
alter tablespace KPI_TEST add datafile 'D:\app\lt\product\11.2.0\KPI_TEST2.DMP' size 10M
4.创建用户
create user zj --用户名
identified by zj123 -- 密码
default tablespace gypts
5.删除用户
drop user ZJ cascade -- 删除用户 ZJ
6.--imp 导入dmp文件 命令
imp zj/zj123@ORCL file='D:\cs\hisdb2020.dmp' log='D:\cs\a.log' full=y ignore=y;