orale 建表空間和使用者

2022-07-29 08:36:07 字數 1172 閱讀 1913

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;

其中'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;

預設表空間'default tablespace'使用上面建立的表空間。

4.接著授權給新建的使用者:

sql> grant connect,resource to news; --表示把 connect,resource許可權授予news使用者

sql> grant dba to news; --表示把 dba許可權授予給news使用者

授權成功。

Orale匯入表空間

imp gengbao gengbao orcl file c gengbao20140201.dmplog c gengbao20140201.log full y ignore y 注 要匯入dmp檔案可拖拽至命令視窗,自動建立路徑。imp 匯入命令 gengbao gengbao 登入伺服器的...

oracle建表空間 使用者

建表空間 語法 create tablespacetablespace namedatafiledatafile pathsize 2048m autoextend on tablespace name 表空間的名稱 datafile path 資料檔案的儲存路徑,必須有讀寫的許可權,可以用chmo...

建立表空間 使用者 授權 建表

用sys賬號登陸sql plus 1 在 儲存 表空間 下建立乙個表空間yangbctablespace2,確保c 下無yangbctablespace2.ora這個檔案,然後執行命令,注意引號要用單引號 sql create tablespace yangbctablespace2 2 dataf...