--Oracle數據庫創建表空間
create tablespace new_taspace
--表空間名
DATAFILE 'D:\NEWTABLESPACE.DBF' --表空間關聯的數據文件和位置
size 200M --文件初始大小
autoextend on next 20MB MAXSIZE 400MB; --文件大小可自動擴展,每次擴展20MB,最大400MB
--創建表空間 create tablespace new_taspace1 --表空間關聯的數據文件和位置 DATAFILE 'D:\NEWTABLESPACE1.DBF' --文件初始大小 SIZE 200M
--日志文件
Logging
extent management local
segment space management auto; --以分號結束
--刪除表空間把物理文件一並刪除
drop tablespace new_taspace including contents and datafiles
--創建用戶
create user orders
identified by 123456
default tablespace new_taspace; --給用戶創建默認表空間
--給用戶賦予角色
grant connect,resource to orders
grant dba from orders
--撤銷用戶管理員角色
revoke dba from orders
--添加訪問某張表的權限
grant select on tep to orders
--創建圖書表
create table book(
id number(11) primary key,
bookname varchar2(50) not null,
price number(11,2) not null,
storage number(11) not null
)