1 建立例項,這個就很簡單了開啟配置和移植工具database configuration assistance ,選擇建立資料庫然後迴圈下一步就ok了。
2 開啟sqlplus 鍵入sqlplus system/manager as sysdba ,就以管理員身份登入了。
然後執行下面一系列的命令就可以了
//建立空間
create tablespace test -- test 是表空間的名字,你可以隨便取
datafile 'c:\oracle\oradata\orcl9\test.dbf' size 50m --你要存放的表空間的路徑
default storage --這個就是表空間的一些引數了。
(initial 500k
next 500k
minextents 1
maxextents unlimited
pctincrease 0);
建立使用者並且指派表空間
sql> create user proctest identified by proctest default tablespace proc_space;
修改使用者的預設表空間(這兩句一定要執行,不然會提示 對錶空間無許可權 )
alter user proctest default_tablespace proc_space;
alter user proctest quota unlimited on proc_space;
授權create session 許可權 (不然plsql 登陸不進去的)
grant create session to proctest;
建立表的許可權
grant create table to proctest;
Oracle架構入門級基礎
學習oracle,最好首先了解oracle的框架。這樣對oracle有乙個整體的認識,有高屋建瓴的作用。1 物理結構 由 控制檔案 資料檔案 重做日誌檔案 引數檔案 歸檔檔案 口令檔案組成 乙個資料庫中的資料儲存在磁碟上物理檔案,被使用時,調入記憶體。其中控制檔案 資料檔案 重做日誌檔案 跟蹤檔案及...
Oracle資料庫 建庫 建表空間,建使用者
oracle資料庫 建庫 建表空間,建使用者 oracle安裝完後,其中有乙個預設的資料庫,除了這個預設的資料庫外,我們還可以建立自己的資料庫。對於初學者來說,為了避免麻煩,可以用 database configuration assistant 嚮導來建立資料庫。建立完資料庫後,並不能立即在資料庫...
Oracle資料庫 建庫 建表空間,建使用者
oracle安裝完後,其中有乙個預設的資料庫,除了這個預設的資料庫外,我們還可以建立自己的資料庫。對於初學者來說,為了避免麻煩,可以用 database configuration assistant 嚮導來建立資料庫。建立完資料庫後,並不能立即在資料庫中建表,必須先建立該資料庫的使用者,並且為該使...