linux 下的oracle的基本操作

2021-05-27 17:27:38 字數 2064 閱讀 8393

su -oracle――切換oracle使用者(如果使用su oracle ,則啟動時不執行.profile使用者環境配置檔案)

$ lsnrctl start――啟動監聽

2 啟動資料庫

$ sqlplus "/ as sysdba"――用sys使用者登陸sqlplus

sql*plus: release 9.2.0.5.0 - production on thu oct 9 15:06:11 2003

connected to an idle instance.

sql> startup――啟動資料庫

oracle instance started.

total system global area 538412728 bytes

fixed size 743096 bytes

variable size 268435456 bytes

database buffers 268435456 bytes

redo buffers 798720 bytes

database mounted.

database opened.

sql> exit――退出sqlplus

disconnected from oracle9i enterprise edition release 9.2.0.5.0 - 64bit production

with the partitioning option

jserver release 9.2.0.5.0 - production

或者$dbstart

3 檢視資料庫程序

$ ps -ef|grep ora_――檢視oracle程序

oracle 688322 1 0 15:06:20 - 0:00 ora_smon_bxmis

oracle 696534 704704 0 15:06:35 pts/4 0:00 grep ora_

oracle 729224 1 0 15:06:20 - 0:00 ora_dbw0_bxmis

oracle 745618 1 0 15:06:20 - 0:00 ora_reco_bxmis

oracle 770216 1 0 15:06:20 - 0:00 ora_ckpt_bxmis

oracle 778394 1 0 15:06:20 - 0:00 ora_pmon_bxmis

oracle 843876 1 0 15:06:20 - 0:00 ora_qmn0_bxmis

oracle 901342 1 0 15:06:20 - 0:00 ora_lgwr_bxmis

oracle 925704 1 0 15:06:20 - 0:00 ora_cjq0_bxmis

$ ps -ef|grep lsnr――檢視oracle監聽程序

4 關閉資料庫

$ sqlplus "/ as sysdba"

sql*plus: release 9.2.0.5.0 - production on thu oct 9 15:07:04 2003

connected to:

oracle9i enterprise edition release 9.2.0.5.0 - 64bit production

with the partitioning option

jserver release 9.2.0.5.0 - production

sql> shutdown immediate――關閉資料庫

database closed.

database dismounted.

oracle instance shut down.

sql> exit

disconnected from oracle9i enterprise edition release 9.2.0.5.0 - 64bit production

with the partitioning option

jserver release 9.2.0.5.0 - production

或者$dbshut

5 停止資料庫監聽

$ lsnrctl stop---停止監聽

Linux下的Oracle操作

su oracle lsnrctl start sqlplus nolog conn user pass startup shutdown immediate imp dba許可權 expimp 先刪除使用者,再建立使用者,賦許可權,再建立序列 drop user username cascade ...

Oracle在Linux下的安裝

說明 這個版本是10g,我的測試是在redhat enterprise上完成的。2 系統預設使用的一些設定如下 預設資料庫 orcl 使用者 sys system sy an dbsnmp 企業版 1.3g 資料庫 700m 3 安裝過程中需要執行的乙個指令碼,這個指令碼必須以root使用者身份登入...

linux下的oracle基本操作

1.su oracle 2.sqlplus logon 3.connect test test as sysdba test test是 oracle 使用者和密碼 4.startup 5.lsnrctl 首選啟動資料庫 su oracle sqlplus nolog conn as sysdba ...