新手建立oracle資料庫最簡直觀教程

2022-07-21 00:21:22 字數 1016 閱讀 5326

oracle資料庫建在遠端linux伺服器上,通過securecrt連線:

1、通過su - ora10g(乙個資料庫例項名)

password :

sqlplus  /nolog

sql>connect as sysdba連線管理員使用者,以下都以管理員身份來做

2.通過步驟1,下來先要建立表空間:

其格式為:格式:  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使用者

授權成功。

5、連線到新使用者下sqlplusw 使用者/密碼

6、建立新錶

oracle 建立資料庫

檢驗是否存在 存在的話刪除 drop tablespace tbs epet 建立表空間 create tablespace tbs epet datafile c epet space.dbf size 5m 建立使用者 create user epet identified by epet de...

Oracle建立資料庫

使用者 作業系統使用者 root登陸 切換到oracle 資料庫使用者 sys system scott 命令 作業系統的命令 id pwd sqlplus的命令 前導命令必須熟悉 id 查詢當前使用者 ls l 顯示當前目錄下的檔案或資料夾 pwd 顯示當前所在的目錄 cd 改變當前目錄 more...

建立Oracle資料庫

root localhost su oracle oracle localhost sqlplus nolog sql conn as sysdba sql show user user is sys sql select name from v datafile 建立臨時表空間 create te...