Oracle學習筆記(六)

來源:互聯網
上載者:User

一、oracle
oracle伺服器有Oracle instace 和Oracle database
instance有memory structure 和 background process 組成。
memory structure包括shared pool、 SGA(System Global Area).

SGA包括:Database buffer cache 和 Redo log buffer cache.
show sga;
show parameter shared;
show parameter db_cache;
show parameter log;
alter system set shared_pool_size=65M;

Process 包括User process、Server process、Background process;
databasey有data file 和 log file 和 control file組成。

database邏輯結構:資料表空間(tablespaces)、段(segments)、分區(extents)、塊(blocks)

ODCA(Oracle Database Configuration Assistant)
:建立資料庫
:設定資料庫選項
:刪除資料庫
:管理資料庫模板

二、管理資料庫執行個體
1、建立和管理初始參數檔案initialization parameter files
系統參數檔案system parameter file——spfilesid,spfile
初始參數檔案init parameter file——initsid.ora
置放位置在oracle安裝目錄下database檔案下
參數分:顯示參數explicit、隱式參數implicit、動態、靜態
2、configure omf
v$system_parameter動態效能表
建立spfile
create spfile from pfile
create spfile='d:\spfile.ora' from pfile;

建立資料表空間
create tablespace test1 datafile='d:\12.dbf' size 3M;

3、開啟和關閉資料庫
開啟資料庫Starting Up a Database
shutdown、nomount、mount、open
nomount——startup instance
used to create db,create controlfile
mount——open controlfile
used to change log mode,rename file,db recovery...
startup [nomount|mount|open]
pfile=
restrict
recovery
force

修改資料庫指令( alter database command)
1、改變資料庫從nomount狀態為mount;
alter database db_01 mount;
2、開啟一個唯讀資料庫
alter database db_01 open read only;

關閉資料庫Shutting Down the Database
shutdown mode:normal、transactional、immediate、abort
4、監視和使用diagnostic files
alter log file——alertsid.log
background tace file、use trace files

三、建立一個Oracle資料庫
1、使用ODCA(oracle database configuration assistant)建立資料庫

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.