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

正文內(nèi)容

【使用教程】oracle數(shù)據(jù)庫(kù)操作規(guī)范(word檔)(編輯修改稿)

2025-05-30 11:37 本頁(yè)面
 

【文章內(nèi)容簡(jiǎn)介】 為 。 安裝數(shù)據(jù)庫(kù)小補(bǔ)丁 針對(duì)每一個(gè) ORACLE版本后都有一些關(guān)鍵補(bǔ)丁。這些關(guān)鍵補(bǔ)丁主要是用來(lái)處理ORACLE軟件的一些特定 bug問(wèn)題。安裝 ORACLE小補(bǔ)丁前確認(rèn)對(duì) ORACLE軟件進(jìn)行備份。使用最新的 opatch軟件進(jìn)行小補(bǔ)丁的安裝。 創(chuàng)建數(shù)據(jù)庫(kù) 在軟件和補(bǔ)丁安裝完成后創(chuàng)建 數(shù)據(jù)庫(kù),具體創(chuàng)建數(shù)據(jù)庫(kù)確認(rèn)下面一些關(guān)鍵項(xiàng)。 1) 數(shù)據(jù)庫(kù)字符集 正常一般國(guó)內(nèi)使用的數(shù)據(jù)庫(kù)字符集為 ZHS16GBK,如果是外資企業(yè),根據(jù)要求選擇對(duì)應(yīng)的字符集合。針對(duì)一些特殊的跨國(guó)企業(yè),在同一個(gè)數(shù)據(jù)庫(kù)中要使用多種字符,建議直接使用 UTF8。 日常操作規(guī)范 第 13頁(yè) 2) 數(shù)據(jù)塊大小 一般數(shù)據(jù)塊大小建議使用 8k,在創(chuàng)建數(shù)據(jù)庫(kù)前一定要確認(rèn)好數(shù)據(jù)塊的大小。否則數(shù)據(jù)庫(kù)創(chuàng)建完成后無(wú)法修改數(shù)據(jù)塊的大小。 3) 控制文件 針對(duì)控制文件,在前期規(guī)劃的時(shí)候確定數(shù)據(jù)庫(kù)的容量,確定最大數(shù)據(jù)文件個(gè)數(shù)。由于重建控制文件是有一定風(fēng)險(xiǎn)性的。建議在前期規(guī)劃的時(shí)候一次性規(guī)劃好。 經(jīng)驗(yàn)一個(gè)數(shù)據(jù)庫(kù)的每個(gè)數(shù)據(jù)文件規(guī)劃為 10G,假設(shè)數(shù)據(jù)庫(kù)容量為 30T。最大數(shù)據(jù)文件個(gè)數(shù)日常操作規(guī)范 第 14頁(yè) 在 3000左右。一般習(xí)慣將數(shù)據(jù)文件個(gè)數(shù)設(shè)置為 4096。同時(shí)確定數(shù)據(jù)庫(kù)參數(shù)db_files=4096,確定數(shù)據(jù)庫(kù)能最大支持到 4096個(gè)文件 (包括在線日志文件,臨時(shí)文件 )。 4) 表空間管理方式 針對(duì)數(shù)據(jù)表空間確認(rèn)使用 ASSM管理方式。另外確認(rèn) 針對(duì)數(shù)據(jù)文件, uniform size 4M create tablespace xxxx datafile 39。/dev/xxxx39。 size 10000M autoextend off extent management local uniform size 4M segment space management auto。 針對(duì)索引文件 , uniform size 8M create tablespace xxxx datafile 39。/dev/xxxx39。 size 10000M autoextend off extent management local uniform size 8M segment space management auto。 針對(duì)臨時(shí)文件 , uniform size 16M create tablespace xxxx datafile 39。/dev/xxxx39。 size 10000M autoextend off extent management local 日常操作規(guī)范 第 15頁(yè) uniform size 16M segment space management auto。 5) 在線日志文件 每個(gè)日志組最少有兩個(gè)日志成員,每個(gè)成員大小 512M。 6) 數(shù)據(jù)庫(kù)關(guān)鍵參數(shù) 參數(shù)名稱(chēng) 參數(shù)值 db_cache_size 根據(jù)實(shí)際內(nèi)存規(guī)劃 db_keep_cache_size 根據(jù)實(shí)際內(nèi)存規(guī)劃 db_file_multiblock_read_count 16 db_writer_processes 6 cursor_sharing similar shared_pool_size 根據(jù)實(shí)際內(nèi)存規(guī)劃 shared_pool_reserved_size shared_pool_size*10% open_cursors 3000 日常操作規(guī)范 第 16頁(yè) open_links 30 session_cached_cursors 300 job_queue_processes 10 java_pool_size 200M large_pool_size 200M log_buffer 16000000 log_archive_max_processes 9 processes 根據(jù)用戶并發(fā)數(shù)規(guī)劃 pga_aggregate_target 根據(jù)實(shí)際內(nèi)存規(guī)劃 undo_retention 3600 optimizer_dynamic_sampling 2 optimizer_index_cost_adj 10 optimizer_index_caching 10 日常操作規(guī)范 第 17頁(yè) 割接申請(qǐng) 割接流程表,割接確認(rèn)單請(qǐng)查看附錄一。 割接會(huì)議 確定割接分工,角色 停業(yè)務(wù) 確定割接方案 確定回退方案 明確割接時(shí)間安排 割接測(cè) 試 編寫(xiě)詳細(xì)的割接文檔 正式割接 割接要求 按回退方案回退 測(cè)試業(yè)務(wù) 割接成功 起應(yīng)用監(jiān)控 失敗 正常 總結(jié)失敗原因 日常操作規(guī)范 第 18頁(yè) 業(yè)務(wù)上線前數(shù)據(jù)庫(kù)檢查規(guī)范 主機(jī)檢查規(guī)范 1) 檢查 CPU個(gè)數(shù) lsdev Cc processor 2) 檢查內(nèi)存容量 grep MemTotal /proc/meminfo dmesg 3) 檢查磁盤(pán)空間 df 4) 檢查操作系統(tǒng)版本 uname a 5) 檢查內(nèi)核參數(shù) HPUX Kernel Parameter Description, Default/Remended Value bufpages Number of static Buffer Pages of 4kB, Enables dynamic buffer cache (see dbc_max/min_pct). default= 0 remended: 0 dbc_max_pct Max dynamic Buffer Cache size in percent of system memory, when bufpages and nbuf are both set to 0, default=50. remended: between 3 and 10 It39。s more efficient to use system memory for Oracle SGA instead of file system buffer cache dbc_min_pct Min dynamic Buffer Cache size in percent of system memory (see dbc_max_pct) default=5 remended: between 2 and 5 日常操作規(guī)范 第 19頁(yè) fs_async see appendix 2 and appendix 6 KSI_ALLOC_MAX (NPROC * 8) Defines the system wide limit of queued signal that can be allocated. max_async_ports Maximum number of asyncdsk ports that can be open at one time. If an error happens with this, it will not shown in the Oracle file or in trace files. default: 50 remended: max. no of shadow processes + no of parallel querie slaves max_thread_proc Max no. of threads allowed in each process default: 64 remended: = Oracle = 64 = Oracle = 256 maxfiles Soft File Limit per Process, soft limit for number of files a process is allowed to have open simultaneously. Processes can increase their soft limit until they reach the hard limit maxfiles_lim. default=60. remended=1024 maxfiles_lim Hard File Limit per Process, default=1024. remended=1024 (default). maxdsiz Refers to the maximum data segment size for 32bit systems. Setting this value too low may cause the processes to run out of memory. Max Data Segment Size (Bytes) default: 67108864 remended: = Oracle = 128 MB = Oracle 9i = 1073741824 bytes 日常操作規(guī)范 第 20頁(yè) maxdsiz_64bit Refers to the maximum data segment size for 64bit systems. Setting this value too low may cause the processes to run out of memory. Max Data Segment Size (Bytes) default: 1073741824 remended: = Oracle = 1073741824 bytes = Oracle 9i = 2147483648 bytes MAXSSIZ Defines the maximum stack segment size in bytes for 32bit systems. Remended: = Oracle 9i = 134217728 bytes MAXSSIZ_64BIT Defines the maximum stack segment size in bytes for 64bit systems. Remended: = Oracle 9i = 1073741824 bytes maxtsiz Max Text Segment size (Bytes) Remended: 128MB max_fcp_reqs Maximum Nu
點(diǎn)擊復(fù)制文檔內(nèi)容
規(guī)章制度相關(guān)推薦
文庫(kù)吧 www.dybbs8.com
備案圖片鄂ICP備17016276號(hào)-1