①创建表空间创建用户以及用户授权
(1)创建表空间
--创建表工作空间
create tablespace itheima
--在服务器上指定空间
datafile 'c:\itheima.dbf'
--为他设置空间大小
size 100m
--进行空间自动填充
autoextend on
--每次进行扩展10m
next 10m;
在服务器上指定空间的时候后缀名必须为dbf
(2)删除表空间
drop tablespace itheima;
执行完成以后,再去xp系统里删除即可;
(3)创建用户
--创建用户
create user itheima
--这是密码
identified b
2021-12-15 16:39:20
92KB
acl
c
le
1