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使用者
授權成功。
相關文章
- Oracle 批量建表空間Oracle
- oracle 表空間建議Oracle
- oracle 快速建表空間,使用者,賦權Oracle
- 資料庫建表效率為王資料庫
- mysql對資料庫表建索引MySql資料庫索引
- [MySQL光速入門]002 建庫, 建表, 加資料MySql
- oracle清除資料庫表空間Oracle資料庫
- 12c 資料泵提取建表空間語句和建表語句
- oracle資料庫之plsql視覺化操作建表Oracle資料庫SQL視覺化
- 資料庫建表及索引規約資料庫索引
- MySQL建庫建表索引規範MySql索引
- windows下Oracle11G指令碼建使用者、表空間、表WindowsOracle指令碼
- 【oracle手工建庫】Oracle
- oracle手工建庫Oracle
- 資料庫建表-表中列的性質資料庫
- 資料庫-單表結構-建表語句資料庫
- rac與邏輯備庫不能自動建表空間,物理備庫正常
- 手工建庫與dbca建庫
- idea內建資料庫 + sql語句庫表操作Idea資料庫SQL
- Oracle - 資料庫的例項、表空間、使用者、表之間關係Oracle資料庫
- oracle建庫指令碼Oracle指令碼
- oracle手動建庫Oracle
- oracle 10 手工建庫Oracle
- Oracle 9 手工建庫Oracle
- Oracle手工建庫指南Oracle
- ORACLE 建庫出錯Oracle
- oracle靜默建庫刪庫Oracle
- PostgreSQL:表空間-->資料庫-->表SQL資料庫
- 【手工建庫】手工方式建立 ORACLE資料庫全程記錄Oracle資料庫
- 資料庫優化建議資料庫優化
- 使用 Hive 構建資料庫Hive資料庫
- 資料庫使用者表空間配額管理資料庫
- oracle一個建立使用者、建立表空間、授權、建表的完整過程Oracle
- 安裝 Oracle 軟體並構建資料庫Oracle資料庫
- 誤刪oracle資料庫表空間檔案Oracle資料庫
- Oracle資料庫設定預設表空間Oracle資料庫
- oracle的空間資料庫:Oracle資料庫
- 清理oracle資料庫空間Oracle資料庫