oracle安裝完後,其中有乙個預設的資料庫,除了這個預設的資料庫外,我們還可以建立自己的資料庫。
對於初學者來說,為了避免麻煩,可以用'database configuration assistant'嚮導來建立資料庫。
建立完資料庫後,並不能立即在資料庫中建表,必須先建立該資料庫的使用者,並且為該使用者指定表空間。
下面是建立資料庫使用者的具體過程:
1.假如現在已經建好名為'news'的資料庫,此時在f:\oracle\product\10.1.0\oradata\目錄下已經存在news目錄(注意:我的oracle10g安裝在f:\oracle下,若你的oracle安裝在別的目錄,那麼你新建的資料庫目錄就在*\product\10.1.0\oradata\目錄下)。
2.在建立使用者之前,先要建立表空間:
其格式為:格式: create tablespace 表間名 datafile '資料檔名' size 表空間大小; 如:
sql> create tablespace news_tablespace datafile 'f:\oracle\product\10.1.0\oradata\news\news_data.dbf' size 500m; 如:
create tablespace p2p_dbs
datafile '
create tablespace prep2p_dbs
datafile '
.dbf' size 1000m;
其中'news_tablespace'是你自定義的表空間名稱,可以任意取名;'f:\oracle\product\10.1.0\oradata\news\news_data.dbf'是資料檔案的存放位置,'news_data.dbf'檔名也是任意取;'size 500m'是指定該資料檔案的大小,也就是表空間的大小。
3.現在建好了名為'news_tablespace'的表空間,下面就可以建立使用者了:
其格式為:格式: create user 使用者名稱 identified by 密碼 default tablespace 表空間表; 如:
sql> create user news identified by news default tablespace news_tablespace; 如:
create user
c##p2p identified by p2p
default tablespace p2p_dbs
;create user
c##prep2p
identified by prep2p
default tablespace prep2p_dbs
;預設表空間'default tablespace'使用上面建立的表空間。
4.接著授權給新建的使用者:
sql> grant connect,resource to news; --表示把 connect,resource許可權授予news使用者
sql> grant dba to news; --表示把 dba許可權授予給news使用者
授權成功。
grant connect,resource,dba to c##p2p;
grant connect,resource,dba to c##prep2p
;
Oracle資料庫 建庫 建表空間,建使用者
oracle資料庫 建庫 建表空間,建使用者 oracle安裝完後,其中有乙個預設的資料庫,除了這個預設的資料庫外,我們還可以建立自己的資料庫。對於初學者來說,為了避免麻煩,可以用 database configuration assistant 嚮導來建立資料庫。建立完資料庫後,並不能立即在資料庫...
Oracle資料庫 建庫 建表空間,建使用者
oracle安裝完後,其中有乙個預設的資料庫,除了這個預設的資料庫外,我們還可以建立自己的資料庫。對於初學者來說,為了避免麻煩,可以用 database configuration assistant 嚮導來建立資料庫。建立完資料庫後,並不能立即在資料庫中建表,必須先建立該資料庫的使用者,並且為該使...
Oracle資料庫 建庫 建表空間,建使用者
oracle安裝完後,其中有乙個預設的資料庫,除了這個預設的資料庫外,我們還可以建立自己的資料庫。對於初學者來說,為了避免麻煩,可以用 database configuration assistant 嚮導來建立資料庫。建立完資料庫後,並不能立即在資料庫中建表,必須先建立該資料庫的使用者,並且為該使...