




已閱讀5頁(yè),還剩15頁(yè)未讀, 繼續(xù)免費(fèi)閱讀
版權(quán)說(shuō)明:本文檔由用戶(hù)提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
SUSE Linux Enterprise 11SP1靜默安裝Oracle 11gR2說(shuō)明文檔1 準(zhǔn)備oracle安裝文件Oracle11gR2包含兩個(gè)文件linux_11gR2_database_1of2.zip和linux_11gR2_database_2of2.zip,下載地址分別是:/otn/linux/oracle11g/R2/linux_11gR2_database_1of2.zip/otn/linux/oracle11g/R2/linux_11gR2_database_2of2.zip下載完成后將這兩個(gè)文件通過(guò)SSH上傳到/usr/local/oracle中。解壓安裝文件到當(dāng)前目錄rootlocalhost root#cd /usr/local/oraclerootlocalhost oracle#unzip linux_11gR2_database_1of2.ziprootlocalhost oracle#unzip linux_11gR2_database_2of2.zip執(zhí)行以上命令后,將會(huì)在/usr/local/oracle/下面產(chǎn)生名為database的目錄,這就是oracle安裝程序的目錄。2 準(zhǔn)備oracle的安裝目標(biāo)目錄rootlocalhost oracle#mkdir p /opt/oracle安裝目標(biāo)目錄是用戶(hù)想將oracle安裝到哪個(gè)位置的目錄,本次我們將oracle安裝到/opt/oracle目錄中,以下為目錄創(chuàng)建命令。3 創(chuàng)建oracle相關(guān)用戶(hù)和用戶(hù)組oracle不能在root帳戶(hù)下進(jìn)行安裝,所以需要為oracle的安裝專(zhuān)門(mén)創(chuàng)建一個(gè)用戶(hù),同時(shí)需要?jiǎng)?chuàng)建dba和oinstall的用戶(hù)組。rootlocalhost oracle#groupadd dbarootlocalhost oracle#groupadd oinstall以下命令將創(chuàng)建dba和oinstall用戶(hù)組:以下命令將創(chuàng)建oracle用戶(hù),并設(shè)置密碼rootlocalhost oracle#useradd -g oinstall -G dba oraclerootlocalhost oracle#passwd oracleChanging password for user oracle.New UNIX password: 在此鍵入密碼BAD PASSWORD: it is based on a dictionary wordRetype new UNIX password: 在此再次鍵入密碼passwd: all authentication tokens updated successfully.創(chuàng)建oracle用戶(hù)home目錄rootlocalhost oracle# md /home/oraclerootlocalhost oracle# chown -R oracle:oinstall /home/oracle以下命令將oracle安裝目錄(/opt/oracle)賦予oracle用戶(hù)oinstall用戶(hù)組rootlocalhost oracle#chown R oracle:oinstall /opt/oracle4 檢查安裝ORACLE依賴(lài)的RPM軟件包oracle的安裝所依賴(lài)的軟件包,有一部分linux是沒(méi)有安裝的。這需要將這些尚未安裝的軟件包先安裝后才能正常安裝oracle。這些未安裝的軟件包在linux安裝光盤(pán)上可以取到,我們直接在linux的光盤(pán)上對(duì)這些軟件包進(jìn)行安裝(也可將所需的軟件包直接復(fù)制到linux本地磁盤(pán)中),首先我們需要掛載linux光盤(pán),使用以下命令:rootlocalhost oracle#mkdir /mnt/cdromrootlocalhost oracle#mount /dev/cdrom /mnt/cdrom安裝所缺少的軟件包,此處只安裝本linux系統(tǒng)所缺少的軟件包。如oracle安裝過(guò)程中,對(duì)軟件包進(jìn)行檢查時(shí),發(fā)現(xiàn)仍有所需軟件包未安裝時(shí),可根據(jù)顯示未安裝軟件包的名字,再次對(duì)所缺少的軟件包進(jìn)行安裝。以下為安裝命令:rootlocalhost oracle#rpm -ivh linux-kernel-headers-2.6.32-1.4.13.noarch.rpmrootlocalhost oracle#rpm -ivh glibc-devel-2.11.1-0.17.4.i586.rpmrootlocalhost oracle#rpm -ivh gcc43-4.3.4_20091019-0.7.35.i586.rpmrootlocalhost oracle#rpm -ivh gcc-4.3-62.198.i586.rpmrootlocalhost oracle#rpm -ivh libstdc+43-devel-4.3.4_20091019-0.7.35.i586.rpmrootlocalhost oracle#rpm -ivh gcc43-c+-4.3.4_20091019-0.7.35.i586.rpmrootlocalhost oracle#rpm -ivh gcc-c+-4.3-62.198.i586.rpmrootlocalhost oracle#rpm -ivh sysstat-8.1.5-7.9.56.i586.rpmrootlocalhost oracle#rpm -ivh libaio-devel-0.3.109-0.1.46.i586.rpmrootlocalhost oracle#rpm -ivh libstdc+-devel-4.3-62.198.i586.rpmrootlocalhost oracle#rpm -ivh unixODBC-2.2.12-198.17.i586.rpmrootlocalhost oracle#rpm -ivh unixODBC-devel-2.2.12-198.17.i586.rpm5 設(shè)置linux內(nèi)核參數(shù)打開(kāi)修改/etc/sysctl.conf,在最后加入以下內(nèi)容kernel.shmall = 2097152kernel.shmmax = 2147483648kernel.shmmni = 4096kernel.sem = 250 32000 100 128net.core.rmem_default = 4194304net.core.rmem_max = 4194304net.core.wmem_default = 262144fs.file-max = 6815744net.ipv4.ip_local_port_range = 9000 65500net.core.wmem_max = 1048576fs.aio-max-nr = 1048576有的時(shí)候我們需要調(diào)整oracle數(shù)據(jù)庫(kù)的最大鏈接數(shù),而這個(gè)鏈接數(shù)的調(diào)整是在oacle下的dbs目錄下init.ora文件中調(diào)整的。ORACLE的連接數(shù)(sessions)與其參數(shù)文件中的進(jìn)程數(shù)(process)有關(guān),它們的關(guān)系如下:sessions=(1.1*process+5)但是我們?cè)黾觩rocess數(shù)時(shí),往往數(shù)據(jù)庫(kù)不能啟動(dòng)了。這因?yàn)槲覀冞€漏調(diào)了一個(gè)unix系統(tǒng)參數(shù):它是核心參數(shù)中的semmns,這是unix系統(tǒng)的信號(hào)量參數(shù)。每個(gè)process會(huì)占用一個(gè)信號(hào)量。semmns調(diào)整后,需要重新啟動(dòng)unix操作系統(tǒng),參數(shù)才能生效。不過(guò)它的大小會(huì)受制于硬件的內(nèi)存或 ORACLE SGA。范圍可從2002000不等。但是,Processes的修改不僅應(yīng)該調(diào)整init.ora文件中的參數(shù),而且應(yīng)該調(diào)整OS的內(nèi)核參數(shù),象 AIX,HPUX,Solaris,SCO,UNIXWare都是這樣,OS的調(diào)整是需要重新啟動(dòng)的,而且這個(gè)參數(shù)的設(shè)置不能簡(jiǎn)單按照多少個(gè)終端要連到這個(gè)服務(wù)器上而定,最關(guān)鍵是考慮會(huì)有多少同時(shí)連上的session(在使用一些共享連接的中間件時(shí),一般就不需要太大),當(dāng)然還要考慮一些Oracle的后臺(tái)進(jìn)程,還有一些系統(tǒng)維護(hù)工作需要多一些連接等。我的atmp大前置機(jī)器上對(duì)oracle調(diào)整的時(shí)候,其使用的是unixware操作系統(tǒng),在做鏈接數(shù)調(diào)整的時(shí)候,要先對(duì)核心參數(shù)進(jìn)行調(diào)整。核心主要相關(guān)的參數(shù)的調(diào)整如下:SHMMAX 1000000000SHMMIN 1SHMMNI 200SHMSEG 15SEMMNI 1000SEMMSL 300SEMMNS 230SEMOPM 20其中semmni,semmns,semmsl要加大,至少要比processes大18 ; SEMMNI(10,10000;150):指定在核心中信號(hào)識(shí)別的數(shù)量。這是可以在任意給定時(shí)間被激活的唯一信號(hào)設(shè)置數(shù)量。缺省值是150。最大值由系統(tǒng)自動(dòng)調(diào)整產(chǎn)生。SEMMSL(25,300;150):指定每個(gè)信號(hào)識(shí)別中信號(hào)量的最大值。缺省值是25。SEMMNS 除最大db外的所有db 的PROCESSES之和+2*最大db的PROCESSES+10*實(shí)例數(shù)。如3個(gè)實(shí)例進(jìn)程數(shù)分別為100、100、200,則=(100+100)+2*200+10*3=630SEMOPM(10,20;10):指定在每個(gè)系統(tǒng)調(diào)用semop中能夠被執(zhí)行的信號(hào)操作量的最大值。缺省值是10。SHMMAX(131072,1073741824;524288):指定了共享內(nèi)存部分大小的最大值。等于0.5物理內(nèi)存字節(jié)數(shù)SHMMNI(10,1000;100):指定了系統(tǒng)范圍內(nèi)共享內(nèi)存標(biāo)識(shí)的最大值。SHMSEG(6,15;6):指定了與每個(gè)進(jìn)程相關(guān)連的共享內(nèi)存塊(或標(biāo)識(shí))的數(shù)量。缺省值是6。與每個(gè)進(jìn)程相關(guān)連的共享內(nèi)存塊的最大值與進(jìn)程擁有的未使用空間有關(guān)。因此,盡管一個(gè)進(jìn)程擁有少于SHMSEG數(shù)值的共享內(nèi)存塊,它也有可能因?yàn)槠溆邢薜目臻g而不能與其它進(jìn)程相聯(lián)系。init.ora中調(diào)整為:processes = 50 # SMALL#processes = 100 # MEDIUM#processes = 200 # LARGE輸入以下命令,使配置生效rootlocalhost oracle#sysctl -p6 修改 /etc/security/limits.conf修改 /etc/security/limits.conf,加入內(nèi)容oracle soft nproc 2047oracle hard nproc 16384oracle soft nofile 1024oracle hard nofile 655367 修改系統(tǒng)環(huán)境變量/etc/profile修改環(huán)境變量/etc/profile,加入以下內(nèi)容if $USER = oracle ; thenif $SHELL = /bin/ksh ; thenulimit -p 16384ulimit -n 65536elseulimit -u 16384 -n 65536fifi8 修改hosts文件lihaolong: # vi /etc/hosts增加一行 lihaolong9 增加/dev/shmMEMORY_MAX_TARGET 的設(shè)置不能超過(guò) /dev/shm 的大小編輯fstab,添加一行:vi /etc/fstabtmpfs /dev/shm tmpfs defaults,size=1024m 0 0重新掛載來(lái)修改其大小mount -o remount /dev/shm10 修改suse版本lihaolong:/home/database # vi /etc/SuSE-releaseSUSE Linux Enterprise Server 11 (i586)VERSION = 9(等號(hào)后面要有個(gè)空格)PATCHLEVEL = 111 開(kāi)始安裝過(guò)程應(yīng)答文件:注:安裝oracle的目錄,至少具備4G的空閑空間rootlocalhost oracle # su oracleoraclelocalhost oracle #cd /usr/local/oracle/database運(yùn)行安裝命令oraclelocalhost database # ./runInstaller -silent -responseFile /home/database/response/db_install.rsp以下為ORACLE安裝程序輸出的結(jié)果Starting Oracle Universal Installer.Checking Temp space: must be greater than 80 MB. Actual 10176 MB PassedChecking swap space: must be greater than 150 MB. Actual 2047 MB PassedPreparing to launch Oracle Universal Installer from /tmp/OraInstall2011-05-31_09-41-19AM. Please wait .oraclelihaolong:/home/database WARNING INS-32018 The selected Oracle home is outside of Oracle base. CAUSE: The Oracle home selected was outside of Oracle base. ACTION: Oracle recommends installing Oracle software within the Oracle base directory. Adjust the Oracle home or Oracle base accordingly.WARNING INS-13014 Target environment do not meet some optional requirements. CAUSE: Some of the optional prerequisites are not met. See logs for details. /tmp/OraInstall2011-05-31_09-41-19AM/installActions2011-05-31_09-41-19AM.log ACTION: Identify the list of failed prerequisite checks from the log: /tmp/OraInstall2011-05-31_09-41-19AM/installActions2011-05-31_09-41-19AM.log. Then either from the log file or from installation manual find the appropriate configuration to meet the prerequisites and fix it manually.WARNING INS-32018 The selected Oracle home is outside of Oracle base. CAUSE: The Oracle home selected was outside of Oracle base. ACTION: Oracle recommends installing Oracle software within the Oracle base directory. Adjust the Oracle home or Oracle base accordingly.WARNING INS-13014 Target environment do not meet some optional requirements. CAUSE: Some of the optional prerequisites are not met. See logs for details. /tmp/OraInstall2011-05-31_09-41-19AM/installActions2011-05-31_09-41-19AM.log ACTION: Identify the list of failed prerequisite checks from the log: /tmp/OraInstall2011-05-31_09-41-19AM/installActions2011-05-31_09-41-19AM.log. Then either from the log file or from installation manual find the appropriate configuration to meet the prerequisites and fix it manually.You can find the log of this install session at: /opt/oracle/oraInventory/logs/installActions2011-05-31_09-41-19AM.log日志文件位置可通過(guò)執(zhí)行以下命令,查看安裝進(jìn)度oraclelocalhost database #tail -f /opt/oracle/oraInventory/logs/installActions2011-05-31_09-41-19AM.logoracle軟件安裝成功后,切換到root用戶(hù),執(zhí)行以下2個(gè)腳本:/opt/oracle/oraInventory/orainstRoot.sh/opt/oracle/product/11.2.0/db_1/root.sh12 安裝監(jiān)聽(tīng)器應(yīng)答文件:lihaolong:/opt/oracle/product/11.2.0/db_1/bin # ./netca /silent /responseFile /home/database/response/netca.rspParsing command line arguments: Parameter silent = true Parameter responsefile = /home/database/response/netca.rspDone parsing command line arguments.Oracle Net Services Configuration:Configuring Listener:LISTENERListener configuration complete.Oracle Net Listener Startup: Running Listener Control: /opt/oracle/product/11.2.0/db_1/bin/lsnrctl start LISTENER Listener Control complete. Listener started successfully.Profile configuration complete.Oracle Net Services configuration successful. The exit code is 0在安裝完成后,需要將oracle目錄的文件夾權(quán)限修改為755, 這樣其他有ORACLE環(huán)境的用戶(hù)可以連接數(shù)據(jù)庫(kù)。 2012020113 創(chuàng)建數(shù)據(jù)庫(kù)應(yīng)答文件:lihaolong:/opt/oracle/product/11.2.0/db_1/bin # ./dbca -silent -responseFile /home/database/response/dbca.rsp Copying database files1% complete2% complete3% complete4% complete37% completeCreating and starting Oracle instance38% complete40% complete41% complete46% complete51% complete56% complete57% complete58% complete61% complete62% completeCompleting Database Creation66% complete70% complete73% complete74% complete85% complete86% complete87% complete88% complete99% complete100% completeLook at the log file /opt/oracle/cfgtoollogs/dbca/orcl/orcl.log for further details.14 設(shè)置ORACLE環(huán)境變量切換至root用戶(hù)修改全局環(huán)境變量配置文件profile。使用以下命令rootlocalhost oracle#vi /etc/profile往配置文件中加入以下內(nèi)容export ORACLE_BASE=/opt/oracleexport ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1export ORACLE_SID=orclexport PATH=$PATH:$ORACLE_HOME/bin使環(huán)境變量配置生效(分別在root、oracle用戶(hù)下執(zhí)行)rootlocalhost oracle# source /etc/profile15 啟動(dòng)ORACLE完成以上操作時(shí),建議重新啟動(dòng)一次,避免某些設(shè)置未生效。重啟后使用oracle用戶(hù)登錄,打開(kāi)終端,鍵入以下命令運(yùn)行sqlplusoraclelihaolong:/opt/oracle/admin/orcl/pfile sqlplus /nologSQL*Plus: Release .0 Production on Tue May 31 11:04:50 2011Copyright (c) 1982, 2009, Oracle. All rights reserved.SQL conn /as sysdbaConnected to an idle instance.SQL startupORACLE instance started.Total System Global Area 414298112 bytesFixed Size 1336904 bytesVariable Size 255855032 bytesDatabase Buffers 150994944 bytesRedo Buffers 6111232 bytesDatabase mounted.Database opened.SQL恭喜,你的ORACLE數(shù)據(jù)庫(kù)已經(jīng)啟動(dòng)成功!現(xiàn)在可以休息一下了。全部完成后,再把suse的版本號(hào)改回去16 異常解決16.1 ORA-01102這個(gè)錯(cuò)誤主要是lk文件造成的,該文件位于ORALCE_HOME下的dbs目錄下,這個(gè)lk的主要作用是說(shuō)明DATABASE MOUNT上了,不用在MOUNT了.DATABASE UNMOUNT 后會(huì)刪除掉,如果DATABASE確實(shí)沒(méi)有MOUNT,這個(gè)文件在你也MOUNT上,只有手工刪除,所以一定要小心.具體解決ORA-01102問(wèn)題的步驟:oraclelihaolong:/opt/oracle/product/11.2.0/db_1/dbs ls -ltotal 36-rw-rw- 1 oracle oinstall 1544 May 31 10:37 hc_DBUA0.dat-rw-rw- 1 oracle oinstall 1544 May 31 11:05 hc_ORCL.dat-rw-rw- 1 oracle oinstall 1544 May 31 10:42 hc_orcl.dat-rw-r-r- 1 oracle oinstall 2851 May 15 2009 initORCL.ora-rw-r- 1 oracle oinstall 24 May 31 10:40 lkORCL-rw-r- 1 oracle oinstall 1536 May 31 10:41 orapworcldrwx- 2 oracle oinstall 4096 May 31 10:36 peshm_DBUA0_0drwx- 2 oracle oinstall 4096 May 31 10:37 peshm_orcl_0-rw-r- 1 oracle oinstall 2560 May 31 11:02 spfileorcl.oraoraclelihaolong:/opt/oracle/product/11.2.0/db_1/dbs fuser -u lkORCL/opt/oracle/product/11.2.0/db_1/dbs/lkORCL: 14588(oracle) 14594(oracle) 14598(oracle) 14600(oracle) 14604(oracle) 14606(oracle) 14608(oracle) 14610(oracle) 14612(oracle) 14614(oracle) 14616(oracle) 14618(oracle) 14664(oracle) 14683(oracle) 14685(oracle) 14687(oracle) 14759(oracle) 15300(oracle)該文件沒(méi)釋放,用fuser命令kill掉:oraclelihaolong:/opt/oracle/product/11.2.0/db_1/dbs fuser -k lkORCL/opt/oracle/product/11.2.0/db_1/dbs/lkORCL: 14588 14594 14598 14600 14604 14606 14608 14610 14612 14614 14616 14618 14664 14683 14685 14687 14759 15300oraclelihaolong:/opt/oracle/product/11.2.0/db_1/dbs fuser -u lkORCLSQL startup pfile=/opt/oracle/admin/orcl/pfile/init.ora.4312011104150ORACLE instance started.Total System Global Area 414298112 bytesFixed Size 1336904 bytesVariable Size 255855032 bytesDatabase Buffers 150994944 bytesRedo Buffers 6111232 bytesDatabase mounted.Database opened.SQL17 附件:Db_install.rsp范例# Copyright(c) Oracle Corporation 1998,2008. All rights reserved.# # Specify values for the variables listed below to customize # your installation. # # Each variable is associated with a comment. The comment # can help to populate the variables with the appropriate # values. # # IMPORTANT NOTE: This file contains plain text passwords and # should be secured to have read permission only by oracle user # or db administrator who owns this installation. # #-# Do not change the following system generated value. #-oracle.install.responseFileVersion=/oracle/install/rspfmt_dbinstall_response_schema_v11_2_0#-# Specify the installation option.# It can be one of the following:# 1. INSTALL_DB_SWONLY# 2. INSTALL_DB_AND_CONFIG# 3. UPGRADE_DB#-oracle.install.option=INSTALL_DB_AND_CONFIG#-# Specify the hostname of the system as set during the install. It can be used# to force the installation to use an alternative hostname rather than using the# first hostname found on the system. (e.g., for systems with multiple hostnames # and network interfaces)#-ORACLE_HOSTNAME=smdw#-# Specify the Unix group to be set for the inventory directory. #-UNIX_GROUP_NAME=oinstall#-# Specify the location which holds the inventory files.#-INVENTORY_LOCATION=/opt/oracle/inventory#-# Specify the languages in which the components will be installed. # en : English ja : Japanese # fr : French ko : Korean # ar : Arabic es : Latin American Spanish # bn : Bengali lv : Latvian # pt_BR: Brazilian Portuguese lt : Lithuanian # bg : Bulgarian ms : Malay # fr_CA: Canadian French es_MX: Mexican Spanish # ca : Catalan no : Norwegian # hr : Croatian pl : Polish # cs : Czech pt : Portuguese # da : Danish ro : Romanian # nl : Dutch ru : Russian # ar_EG: Egyptian zh_CN: Simplified Chinese # en_GB: English (Great Britain) sk : Slovak # et : Estonian sl : Slovenian # fi : Finnish es_ES: Spanish # de : German sv : Swedish # el : Greek th : Thai # iw : Hebrew zh_TW: Traditional Chinese # hu : Hungarian tr : Turkish # is : Icelandic uk : Ukrainian # in : Indonesian vi : Vietnamese # it : Italian # Example : SELECTED_LANGUAGES=en,fr,ja#-SELECTED_LANGUAGES=en#-# Specify the complete path of the Oracle Home.#-ORACLE_HOME=/opt/oracle/product/11.2.0#-# Specify the complete path of the Oracle Base. #-ORACLE_BASE=/opt/oracle#-# Specify the installation edition of the component. # # The value should contain only one of these choices. # EE : Enterprise E
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶(hù)所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶(hù)上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶(hù)上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶(hù)因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 漢口學(xué)院《TEM-8》2023-2024學(xué)年第二學(xué)期期末試卷
- 計(jì)算機(jī)基礎(chǔ)知識(shí)點(diǎn)更新的試題及答案
- 西北大學(xué)《診斷學(xué)(一)》2023-2024學(xué)年第二學(xué)期期末試卷
- 2024-2025學(xué)年貴州省黔東南州凱里六中學(xué)初三全真四模英語(yǔ)試題試卷含答案
- 福建省福州市第一中學(xué)2024-2025學(xué)年高中畢業(yè)班第三次診斷性測(cè)試語(yǔ)文試題試卷含解析
- 湖北師范大學(xué)文理學(xué)院《數(shù)字影像合成》2023-2024學(xué)年第二學(xué)期期末試卷
- 2025【店鋪轉(zhuǎn)讓合同范本】商業(yè)轉(zhuǎn)讓合同模板
- 寵物營(yíng)養(yǎng)對(duì)免疫系統(tǒng)的影響及試題答案
- 張家口市陽(yáng)原縣文職輔警招聘考試真題
- 學(xué)校食堂等集中用餐單位落實(shí)“日管控 周排查月調(diào)度”風(fēng)險(xiǎn)防控機(jī)制指引(試行)
- 中式烹調(diào)師初級(jí)試卷
- 高考倒計(jì)時(shí)60天課件
- 幼兒園繪本故事:《十二生肖》 課件
- (完整版)人教版小學(xué)3-6年級(jí)英語(yǔ)單詞表-可直接打印
- 機(jī)電安裝總進(jìn)度計(jì)劃?rùn)M道圖
- 起重吊裝作業(yè)安全綜合驗(yàn)收記錄表
- 園林綠化工程監(jiān)理實(shí)施細(xì)則(完整版)
- 夢(mèng)想(英語(yǔ)演講稿)PPT幻燈片課件(PPT 12頁(yè))
- 中國(guó)聯(lián)通員工績(jī)效管理實(shí)施計(jì)劃方案
- 法院刑事審判庭速裁庭廉政風(fēng)險(xiǎn)防控責(zé)任清單
- IEC60335-1(中文)
評(píng)論
0/150
提交評(píng)論