1、打开oracle安装目录下的sys工具
2、输入用户名和密码登录oracle
3、create tablespace KJSJ90 datafile 'D:\app\Administrator\oradata\KJSJ90' size 512M autoextend on next 32M;创建名为“KJSJ90”的表空间,其初始大小为1024M,支持自动扩展,每次增量为32M;
4、CREATE USER KJSJ90 IDENTIFIED BY KJSJ90 DEFAULT TABLESPACE KJSJ90;--创建名为“KJSJ90”的用户
5、--为“KJSJ90”用户授权KJSJ90为用户密码GRANT RESOURCE,DBA,CONNECT TO KJSJ;
6、创建完成后,很长时间以后如果要进行清除删除删除空间数据库的表和数据drop tablespace KJSJ90 including contents and datafiles;
7、删除用户drop user KJSJ cascade;