Oracle安裝完后,,其中有一個(gè)缺省的數(shù)據(jù)庫(kù),除了這個(gè)缺省的數(shù)據(jù)庫(kù)外,,我們還可以創(chuàng)建自己的數(shù)據(jù)庫(kù),。 為了避免麻煩,可以用’Database Configuration Assistant’向?qū)?lái)創(chuàng)建數(shù)據(jù)庫(kù)(這步一定要?jiǎng)?chuàng)建好,因?yàn)檫@里沒(méi)有做好,,會(huì)在創(chuàng)建表空間時(shí)出錯(cuò)—我就在這里花了幾個(gè)小時(shí),,暈)。 創(chuàng)建完數(shù)據(jù)庫(kù)后,,并不能立即在數(shù)據(jù)庫(kù)中建表,,必須先創(chuàng)建該數(shù)據(jù)庫(kù)的用戶,并且為該用戶指定表空間,。 下面是創(chuàng)建數(shù)據(jù)庫(kù)用戶的具體過(guò)程: 1.假如現(xiàn)在已經(jīng)建好名為’test’的數(shù)據(jù)庫(kù),,此時(shí)在d:\oracle\oradata\目錄下已經(jīng)存在test目錄(注意:我的Oracle11g安裝在d:\oracle下,若你的Oracle安裝在別的目錄,,那么你新建的數(shù)據(jù)庫(kù)目錄就在*\oradata\目錄下)。 2.在創(chuàng)建用戶之前,,先要?jiǎng)?chuàng)建表空間: 其格式為:格式: create tablespace 表間名 datafile ‘?dāng)?shù)據(jù)文件名’ size 表空間大小; 如: SQL> create tablespace test_tablespace datafile ‘d:\oracle\oradata\test\test.dbf’ size 100M; 其中’test_tablespace’是你自定義的表空間名稱,,可以任意取名; ‘d:\oracle\oradata\test\test.dbf’是數(shù)據(jù)文件的存放位置,,’test.dbf’文件名也是任意?。?/P> ‘size 100M’是指定該數(shù)據(jù)文件的大小,,也就是表空間的大小,。 刪除命名空間 DROP TABLESPACE test INCLUDING CONTENTS AND DATAFILES CASCADE CONSTRAINTS; 3.現(xiàn)在建好了名為’test_tablespace’的表空間,下面就可以創(chuàng)建用戶了: 其格式為:格式: create user 用戶 名 identified by 密碼 default tablespace 表空間表; 如: SQL> create user testone identified by testone default tablespace test_tablespace; 默認(rèn)表空間’default tablespace’使用上面創(chuàng)建的表空間,。 4.接著授權(quán)給新建的用戶: SQL> grant connect,,resource to testone; –表示把 connect,resource權(quán)限授予testone用戶 SQL> grant dba to testone; –表示把 dba權(quán)限授予給testone用戶 授權(quán)成功,。 ok! 數(shù)據(jù)庫(kù)用戶創(chuàng)建完成,,現(xiàn)在你就可以使用該用戶創(chuàng)建數(shù)據(jù)表了! |
|