程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> Oracle數據庫創建表空間,oracle數據庫創建

Oracle數據庫創建表空間,oracle數據庫創建

編輯:Oracle教程

Oracle數據庫創建表空間,oracle數據庫創建


--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
)

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved