freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

oracle_運維手冊(完整版)

2025-07-05 18:00上一頁面

下一頁面
  

【正文】 啟動數(shù)據(jù)庫服務(wù) srvctl start已經(jīng)卸載數(shù)據(jù)庫。 打開偵聽 lsnrctl start查看偵聽 Lsnrctl status關(guān)閉偵聽 lsnrctl stop3. ORACLE的啟動和關(guān)閉 在單機(jī)環(huán)境下要想啟動或關(guān)閉ORACLE系統(tǒng)必須首先切換到ORACLE用戶,如下su表名 SQL*Plus中的編輯命令216。2. 簡單命令使用 進(jìn)入SQL*Plus$sqlplus 使用INPUT命令可以在SQL緩沖區(qū)中增加一行或多行SQLiSQL輸入內(nèi)容 調(diào)用外部系統(tǒng)編輯器SQLedit數(shù)據(jù)庫已經(jīng)打開。 啟動CRS$CRS_HOME/crs/bin/crsctl start crs216。 檢查數(shù)據(jù)庫是否出現(xiàn)過宕機(jī)(可能在晚間重啟而維護(hù)人員不知道)216。性能監(jiān)測216。 檢查CPU、內(nèi)存、網(wǎng)絡(luò)等是否異常5. 數(shù)據(jù)庫日常操作SQL 查看表空間物理文件的名稱及大小select tablespace_name, file_id, file_name, round(bytes / (1024 * 1024), 0) filesize from dba_data_files order by tablespace_name。 查詢表空間的碎片程度select tablespace_name, count(tablespace_name) from dba_free_space group by tablespace_namehaving count(tablespace_name) 10。select tablespace_name, sum(bytes), max(bytes), count(block_id) from dba_free_space group by tablespace_name。SYSTEM39。 查看數(shù)據(jù)庫的版本Select version FROM Product_ponent_version Where SUBSTR(PRODUCT, 1, 6) = 39。 and segment_type = 39。 group by segment_name。alter system set cluster_database=true scope =spfile sid=’*’。 什么時侯需要重建索引?答:(1)表上頻繁發(fā)生update,delete操作在分析(analyze)指定索引之后,查詢index_stats的height字段的值,如果這個值=4 ,則最好重建(rebuild)這個索引。AND =AND =AND =ORDER BY ,。%jobq%39。 db file sequential read,216。) group by v$, v$。 監(jiān)控文件系統(tǒng)的 I/O 比例 select substr(, 1, 2) , substr(, 1, 30) Name, , , , from v$datafile a, v$filestat b where = 。redo allocation39。, 39。 查看Lock, 39。) LOCKTYPE, substr(, 1, 10) OBJECT, owner, , , decode(, 1, 39。, 5, 39。, 3, 39。, null) request from v$lock l, v$session s, $ u, $ t where = and != 39。 AND table_name = 39。USER39。Action Code 39。 || address sql_address, 39。 下載一張或幾張表exp hs_user/handsome file= log= tables=table1,table2 buffer=4096000 feedback=10000216。buffer:上載數(shù)據(jù)緩沖區(qū),以字節(jié)為單位,缺省依賴操作系統(tǒng)mit:上載數(shù)據(jù)緩沖區(qū)中的記錄上載后是否執(zhí)行提交feeback:顯示處理記錄條數(shù),缺省為0,即不顯示file:輸入文件,filesize:輸入文件大小,缺省為操作系統(tǒng)最大值fromuser:指明來源用戶方ignore:是否忽略對象創(chuàng)建錯誤,缺省為nindexes:是否上載索引,缺省為n,這是指索引的定義而非數(shù)據(jù),如果上載時索引已建立,此選項即使為n也無效,imp自動更新索引數(shù)據(jù)log:log文件,缺省為無,在標(biāo)準(zhǔn)輸出顯示rows:是否上載表記錄tables:輸入的表名列表touser:指明目的用戶方216。一般1G ~ 3G3Gprocesses進(jìn)程數(shù),即可以對外提供服務(wù)的數(shù)據(jù)。 殺死僵死連接有時候由于客戶端的異常退出,會出現(xiàn)一些連接的進(jìn)程一直在運行,從而不能釋放資源,影響系統(tǒng)的性能。 一般情況可以解決數(shù)據(jù)庫存在的死鎖了,或通過session id 查到對應(yīng)的操作系統(tǒng)進(jìn)程,在unix中殺掉操作系統(tǒng)的進(jìn)程。晚上在清算處理時,在文件標(biāo)志復(fù)位時發(fā)現(xiàn)很慢,查看Paging Space利用率為40%,但小機(jī)利用率正常。如果按照系統(tǒng)缺省的配置,文件型內(nèi)存最多會占用到內(nèi)存總量的80%,由于文件型內(nèi)存占用并不主動釋放,從而可能造成內(nèi)存資源的短缺及Paging Space使用率過高。如maxperm% 可以依次調(diào)整了60,40,20,同時查看性能的性能。因為參數(shù)maxperm充當(dāng)?shù)氖擒浵拗疲晕募蛢?nèi)存的占用率依舊可以超過maxperm的設(shè)定值。對抓出來的語句進(jìn)行分析,如果懷疑是統(tǒng)計信息不正確引起的全表掃瞄,可以先進(jìn)行統(tǒng)計信息的收集,方法如下。, cascade = true, degree = 7)。在操作系統(tǒng)層面,節(jié)點1的cpu利用率為0,節(jié)點2的cpu利用率為20。再者,從Oracle的trace文件里可以看出在兩次交易故障發(fā)生時,oracle rac的DRM 正在做大量的數(shù)據(jù)同步信息。kjfcrfg: DRM window size = 04096 (min lognb = 15) *** 20070519 15:28:Reconfiguration started (old inc 0, new inc 16)Synchronization timeout interval: 900 secList of nodes: 0 1*** 20070519 15:28: Global Resource Directory frozennode 0release 10 2 0 2node 1release 10 2 0 2 number of mastership buckets = 128 domain attach called for domid 0 * kjbdomalc: domain 0 invalid = TRUE * kjbdomatt: first attach for domain 0 asby init, 0/0/x1 asby returns, 0/0/x1/false * Domain maps before reconfiguration: * DOMAIN 0 (valid 0): 0 * End of domain mappings * Domain maps after reputation: * DOMAIN 0 (valid 0): 0 1 * End of domain mappings Dead inst Join inst 0 1 Exist inst Active Sendback Threshold = 50 % Communication channels reestablished sent syncr inc 16 lvl 1 to 0 (16,5/0/0) sent synca inc 16 lvl 1 (16,5/0/0) received all domreplay () sent master 1 () sent syncr inc 16 lvl 2 to 0 (16,7/0/0) sent synca inc 16 lvl 2 (16,7/0/0) Master broadcasted resource hash value bitmaps* kjfcrfg: domain 0 valid, valid_ver = 16 Nonlocal Process blocks cleaned out Set master node info sent syncr inc 16 lvl 3 to 0 (16,13/0/0) sent synca inc 16 lvl 3 (16,13/0/0) Submitted all remoteenqueue requestskjfcrfg: Number of mesgs sent to node 1 = 0 sent syncr inc 16 lvl 4 to 0 (16,15/0/0) sent synca inc 16 lvl 4 (16,15/0/0) Dwncvts replayed, VALBLKs dubious sent syncr inc 16 lvl 5 to 0 (16,18/0/0) sent synca inc 16 lvl 5 (16,18/0/0) All grantable enqueues granted sent syncr inc 16 lvl 6 to 0 (16,20/0/0) sent synca inc 16 lvl 6 (16,20/0/0) *** 20070519 15:28: Submitted all GCS cache requests sent syncr inc 16 lvl 7 to 0 (16,22/0/0) sent synca inc 16 lvl 7 (16,22/0/0) Post SMON to start 1st pass IR Fix write in gcs resources sent syncr inc 16 lvl 8 to 0 (16,24/0/0) sent synca inc 16 lvl 8 (16,24/0/0) *** 20070519 15:28:Reconfiguration plete* domain 0 valid?: 1 *** 20070519 15:28:kjxgrtmc2: mounting member 0 thread 1Begin DRM(32) sent syncr inc 16 lvl 9 to 0 (16,0/31/0) sent synca inc 16 lvl 9 (16,0/31/0) ... sent syncr inc 16 lvl 39 to 0 (16,0/36/0) sent synca inc 16 lvl 39 (16,0/36/0) *** 20070519 15:28: sent syncr inc 16 lvl 40 to 0 (16,0/38/0) sent synca inc 16 lvl 40 (16,0/38/0) End DRM(32) 日志文件太小引起的切換過于頻繁假設(shè)現(xiàn)有三個日志組,每個組內(nèi)有一個成員,每個成員的大小為512MB,現(xiàn)在想把此三個日志組的成員大小都改為1G。) size 1024M。switch1。databasedatabasesize(39。logfile 216。logfile。dropgroupdatabase若是用9207 版本的SQLPLUS,則會出現(xiàn):沒反應(yīng),HANG住。則語句就是:SUBSCRIBE_FOR_NODE_DOWN_EVENT_LISTENER=OFF 查詢委托返回記錄不對216。 其它這個問題已經(jīng)多次出現(xiàn),與很多Oracle 售前人員交流過,沒有定論。l Mon Jun 11 16:54:38 2007Error: unexpected error (6) from the Cluster Service (LCK0)Mon Jun 11 16:54:38 2007Errors in file /u01/app/oracle/admin/rac/bdump/:ORA29702: error occurred in Cluster Group Service operationMon Jun 11 16:54:38 2007Errors in file /u01/app/oracle/admin/rac/bdump/:ORA29702: error occurred in Cluster Group Service operationMon Ju
點擊復(fù)制文檔內(nèi)容
公司管理相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1