1. 程式人生 > >oracle第二步創建表空間、用戶、授權

oracle第二步創建表空間、用戶、授權

toe 數據 表空間 nag gem 分享 reat 登錄 light

Windows+r→鍵入sqlplus,輸入已安裝好的oracle數據庫超級管理員賬號密碼登錄。顯示:

技術分享

成功。

創建表空間:

技術分享

創建用戶並默認表空間:

技術分享

授權該創建用戶對數據庫的操作:

技術分享

代碼:

SQL> create tablespace user_data
  2  logging
  3  datafile ‘D:\oracleTableSpace\oracle70170705.dbf‘
  4  size 50m
  5  autoextend on
  6  next 50m maxsize 10240m
  7  extent management local;



SQL> create user username identified by password
  2  default tablespace user_data;



SQL> grant connect , resource , dba to username;

  

oracle第二步創建表空間、用戶、授權