1. 連線到oralce
at the operating system prompt, enter the following command to start the sql
command line and connect to the database:
conn / as sysdba
the slash (/) indicates that the database should authenticate you with operating
system authentication.
也可以用 conn username/passwd as sysdba
system/manager
2. 啟動oracle和關閉oracle
at the sql command line prompt, enter the following command:
sql> startup
sql> shutdown immediate // 如果shutdown失敗,可以輸入這個命令:shutdown abort. 之後可以重新啟動和關閉oracle。
3. 資料庫連線
connect username/password@[//]host[:port][/service_name]
4. oracle體系結構
database:
tablespace:
there are various tablespaces, including the following:
1. permanent tablespace 2. temporary tablespace 3. undo tablespace
undo tablespace的目的:1) to undo any uncommitted changes. 2) to provide read consistency. 3) to support the flashback query feature.
tablespaces: system sysaux temp undo users
5. 使用者和許可權。
預設使用者:
sys 密碼是 change_on_install // must connect to the database "as sysdba."
system 密碼是 manager
Oracle體系結構 基礎概念
oracle體系結構主要用來分析資料庫的組成 工作過程與原理,以及資料在資料庫中的組織與管理機制。oracle資料庫是乙個邏輯概念,而不是物理概念上安裝了oracle資料庫管理系統的伺服器。例項是指一組oracle後台程序以及在伺服器中分配的共享記憶體區域 資料庫是指基於磁碟的資料檔案 控制檔案 日...
Oracle體系架構
oracle資料庫由兩個實體組成 1 例項 2 資料庫 例項 例項由儲存結構和程序組成,短暫存在於ram和cpu 因此例項的生存時間其在記憶體的時間,我們可以啟動和停止例項。資料庫 資料庫分為物理結構和邏輯結構。物理結構 物理結構就是磁碟上的物理檔案 包括三類檔案 控制檔案 control file...
Oracle邏輯體系
資料庫由若干表空間組成,表空間由若干段組成,段由若干區組成,區又由oracle的最小單元塊組成。資料庫最小單元 塊 分成五個部分。2.表目錄區 只要有一行資料插入到資料庫塊中,那該行資料所在到表資訊將被儲存在這個區域 4.可用空間區 塊中到空餘空間。這個空餘的多少是由oracle的pctfree引數...