oracle資料庫建庫過程:
1.建立使用者
2.分配角色許可權
3.建立表空間
4.新建表
5.新增、刪除、修改、查詢
6.資料庫備份
7.資料庫還原
今天學習oracle建立乙個資料庫的基本操作,首先建立乙個表空間yang,接著建立乙個yang使用者,最後建立一張users表。
1這裡繪了乙個使用者許可權管理的e-r圖,不知道是否合理。sys使用者以sysdba登入建立表空間yang:
2create tablespace yang
3 datafile '
'size 400m
4extent management local uniform size 512k;
5以system使用者normal登入,建立使用者yang:
6 --create the user
7create user yang
8default
tablespace yang
9temporary tablespace temp
10profile default
11password expire;
12 -- grant/revoke role privileges
13grant connect to yang with admin option;
14grant resource to yang with admin option;
15 -- grant/revoke system privileges
16grant unlimited tablespace to yang with admin option;
17以yang登入,建立表users。
18 --create table
19create table users20(
21 gid number not null
,22 gusername nvarchar2(30) not null
,23 gpassword nvarchar2(30) not null24)
25tablespace yang
26 pctfree 10
27 initrans 1
28 maxtrans 255
29storage30(
31initial 512k
32next 512k
33 minextents 1
34maxextents unlimited
35 pctincrease 0
36);
37 -- create/recreate primary, unique and foreign key constraints
38alter table users
39add constraint primarykey primary key (gid)
40using
index
41tablespace yang
42 pctfree 10
43 initrans 2
44 maxtrans 255
45storage46(
47initial 512k
48next 512k
49 minextents 1
50maxextents unlimited
51 pctincrease 0
52 );
Oracle筆記(1) 建庫學習
oracle資料庫建庫過程 1.建立使用者 2.分配角色許可權 3.建立表空間 4.新建表 5.新增 刪除 修改 查詢 6.資料庫備份 7.資料庫還原 今天學習oracle建立乙個資料庫的基本操作,首先建立乙個表空間yang,接著建立乙個yang使用者,最後建立一張users表。1 sys使用者以s...
oracle手動 建庫 ORACLE 手動建庫
oracle 手動建庫 oracle10gr2手動建庫大致分為以下幾個步驟 編輯.bash profile檔案,設定環境變數 建立所需目錄結構 建立初始化引數檔案 執行建庫指令碼 下面以建立test資料庫為例 1 編輯.bash profile檔案,新增oracle sid環境變數 在.bash p...
資料庫建庫建表學習筆記
本週是第七周,我們小組進行了sql server的建模,建表,插入資料。現將注意事項以及問題,解決方案整理如下。首先是建模。建模的首要工作是在相應的位置建立乙個資料夾,例如 在f盤建立乙個名為門診資訊系統的資料夾。啟動 sql,在 sql環境內建立乙個資料庫,並將資料檔案和日誌檔案也放入資料夾內,具...