登录到oracle
shell
sqlplus system/root
用户名/密码
创建数据库
sql
-- 创建一个表空间
create tablespace helloworld
datafile 'C:\Users\zhangtengfei\tablespace\helloworld.dbf'
size 100m
autoextend on --自动扩充
next 10m; --每次扩容10m
-- 创建用户 一个表空间 可以有多个用户
create user ztf1 -- 用户名
identified by root -- 密码
default tablespace helloworld --表空间