首先,通过sql,查询数据库表空间存放位置;
select file_name from dba_data_files;
1.创建数据库临时表空间;
create temporary tablespace yd_temp
tempfile 'D:\APP\ADMINISTRATOR\ORADATA\ORCL\file_temp.dbf'size 50m
autoextend on
next 50m maxsize 2048m
extent management local;
2.创建数据表空间;
create tablespace zyl_data
logging
datafile 'D:\APP\ADMINISTRATOR\ORADATA\ORCL\data_temp.dbf'
size 50m
autoextend on
next 50m maxsize 2048m
extent management local;
3.创建用户名;
create user zyl_tools identified by zyl123
-- ‘file_username’ 为创建的用户名 ;‘12345678’为创建的新用户登录密码
default tablespace zyl_datatemporary tablespace yd_temp;
4.为用户分配权限;
grant connect,resource,dba to zyl_tools;
完成了,数据库创建用户及表空间。