時間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評論(0)
Oracle還是比較常用的,于是我研究了一下Oracle數(shù)據(jù)服務(wù)器,在這里拿出來和大家分享一下,希望對大家有用。
1、Oracle數(shù)據(jù)服務(wù)器包括:實例進程和數(shù)據(jù)庫;實例進程包括:memory structure(sga)以及background process pmon(進程監(jiān)控)、smon(系統(tǒng)監(jiān)控system monitor,空間整理3秒)、dbwr(臟數(shù)據(jù)處理)、lgwr(將redo buffer文件寫會log),ckpt(checkpoint,同步數(shù)據(jù),先寫日志、臟數(shù)據(jù))等進程;數(shù)據(jù)庫包括:數(shù)據(jù)文件、控制文件,redo log 文件,三者是必須的,至于 參數(shù)文件、密碼文件、歸檔文件是可選的,根據(jù)數(shù)據(jù)庫的狀態(tài)而定;
2、pga:包括user process 和server process,user process通過server process來與Oracle的實例進行進行通信。
3、sga=share pool+database buffer cache+redo log buffer + other structures(large pool,java pool可選) shared_pool=library cache(sql共享,緩沖sql的執(zhí)行計劃,采用最近最少使用算法) + data dictionary cache(row cache,數(shù)據(jù)字典); database buffer cache(db_cache_size):Oracle以block size最為基本的數(shù)據(jù)讀寫單位 redo log buffer cache:
4、改變參數(shù): alter system set shared_pool_size=64m; alter system set db_cache_size=64m; alter system set large_pool_size=64m;
5、os驗證用戶: create user id create group (ora_dba,ora_databasename_dba,ora_oper,ora_databasename_oper) add user id to group id edit sqlnet.ora (sqlnet.authentication_services=(nts))
6、忘記system/sys的密碼:刪掉E:\Oracle\product\10.2.0\db_1\database \pwdtestdb.ora; 使用命令:orapwd file=d:\pwdtestdb.ora password=admin1 entries=10;將密碼設(shè)置為admin1; 或則: sqlplus /@testdb as sysdba alter user sys identified by 新密碼; alter user system identified by 新密碼;
7、block(塊) extend(盤區(qū)) segment(段) tablespace(表空間)
8、網(wǎng)絡(luò)服務(wù)的配置信息在D:\Oracle\product\10.2.0\db_1\NETWORK\ADMIN\tnsnames.ora文件中記錄
Oracle數(shù)據(jù)服務(wù)器的啟動命令
1、啟動TNS監(jiān)聽 C:\Documents and Settings\Administrator>lsnrctl start
2、啟動Oracle Services C:\Documents and Settings\Administrator>net start OracleServiceOrcl
3、以sysdba身份登錄 SQL> connect system as sysdba
4、啟動isqlplus C:\Documents and Settings\Administrator>isqlplusctl start
5、啟動database control C:\Documents and Settings\Administrator>emctl start dbconsole 如果啟動錯誤,很可能是ip地址進行了修改,可采取如下措施: set Oracle_hostname=主機名 emca -config dbcontrol db,進行相應(yīng)的配置。
6、show all serveroutput OFF
7、set serveroutput on 啟動及關(guān)閉模式 Oracle數(shù)據(jù)庫的幾種啟動和關(guān)閉方式
Oracle數(shù)據(jù)服務(wù)器有以下幾種啟動方式:
1、startup nomount 非安裝啟動,這種方式啟動下可執(zhí)行:重建控制文件、重建數(shù)據(jù)庫 讀取init.ora文件,啟動instance,即啟動SGA和后臺進程,這種啟動只需要init.ora文件。
2、startup mount dbname 安裝啟動,這種方式啟動下可執(zhí)行: 數(shù)據(jù)庫日志歸檔、數(shù)據(jù)庫介質(zhì)恢復(fù)、使數(shù)據(jù)文件聯(lián)機或脫機, 重新定位數(shù)據(jù)文件、重做日志文件。執(zhí)行"nomount",然后打開控制文件,確認數(shù)據(jù)文件和聯(lián)機日志文件的位置,但此時不對數(shù)據(jù)文件和日志文件進行校驗檢查。
3、startup open dbname 先執(zhí)行"nomount",然后執(zhí)行"mount",再打開包括Redo log文件在內(nèi)的所有數(shù)據(jù)庫文件, 這種方式下可訪問數(shù)據(jù)庫中的數(shù)據(jù)。
4、startup,等于以下三個命令 startup nomount alter database mount alter database open
5、startup restrict 約束方式啟動這種方式能夠啟動數(shù)據(jù)庫,但只允許具有一定特權(quán)的用戶訪問非特權(quán)用戶訪問時,會出現(xiàn)以下提示: ERROR: ORA-01035: Oracle 只允許具有 RESTRICTED SESSION 權(quán)限的用戶使用
6、startup force 強制啟動方式 當(dāng)不能關(guān)閉數(shù)據(jù)庫時,可以用startup force來完成數(shù)據(jù)庫的關(guān)閉 先關(guān)閉數(shù)據(jù)庫,再執(zhí)行正常啟動數(shù)據(jù)庫命令
7、startup pfile=參數(shù)文件名 帶初始化參數(shù)文件的啟動方式 先讀取參數(shù)文件,再按參數(shù)文件中的設(shè)置啟動數(shù)據(jù)庫 例:startup pfile=E:\Oracle\admin\oradb\pfile\init.ora
8、startup EXCLUSIVE
有三種啟動方式:
1、shutdown normal 正常方式關(guān)閉數(shù)據(jù)庫。
2、shutdown immediate 立即方式關(guān)閉數(shù)據(jù)庫。 在SVRMGRL中執(zhí)行shutdown immediate,數(shù)據(jù)庫并不立即關(guān)閉,而是在Oracle執(zhí)行某些清除工作后才關(guān)閉(終止會話、釋放會話資源),當(dāng)使用shutdown不能關(guān)閉數(shù)據(jù)庫時,shutdown immediate可以完成數(shù)據(jù)庫關(guān)閉的操作。
3、shutdown abort 直接關(guān)閉數(shù)據(jù)庫,正在訪問數(shù)據(jù)庫的會話會被突然終止, 如果數(shù)據(jù)庫中有大量操作正在執(zhí)行,這時執(zhí)行shutdown abort后,重新啟動數(shù)據(jù)庫需要很長時間。
關(guān)鍵詞標(biāo)簽:Oracle,數(shù)據(jù)服務(wù)器
相關(guān)閱讀
熱門文章 Oracle中使用alter table來增加,刪除,修改列的語法 oracle中使用SQL語句修改字段類型-oracle修改SQL語句案例 誤刪Oracle數(shù)據(jù)庫實例的控制文件 為UNIX服務(wù)器設(shè)置Oracle全文檢索
人氣排行 oracle中使用SQL語句修改字段類型-oracle修改SQL語句案例 Oracle中使用alter table來增加,刪除,修改列的語法 ORACLE SQL 判斷字符串是否為數(shù)字的語句 ORACLE和SQL語法區(qū)別歸納(1) oracle grant 授權(quán)語句 ORACLE修改IP地址后如何能夠使用 如何加速Oracle大批量數(shù)據(jù)處理 Oracle刪除表的幾種方法