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

正文內(nèi)容

linux下oracle的安裝課程設(shè)計(jì)-資料下載頁

2025-01-12 03:48本頁面
  

【正文】 pw$ORACLE_SID ] then cp $ORACLE_HOME/dbs/orapw$ORACLE_SID $backup_dir/ fi echo Cold backup finished. $log_file date $log_file (三)全庫(kù)冷備份 shell 程序 把表空間置于備份狀態(tài)的命令: Altel tablespace tablespace_name begin backup 結(jié)束表空間備份狀態(tài)的命令: Altel tablespace tablespace_name end backup 備份腳本內(nèi)容: [oracle@oracle ~]$ cat n ! /bin/bash backup_dir=/oracle/bakup log_file=$ORACLE_BASE/admin/$ORACLE_SID/hot_backup_$ echo Beginning hot backup... $log_file date $log_file sqlplus s / as sysdba EOF $log_file alter database backup controlfile to 39。/$backup_dir/39。 set pagesize 0 set linesize 1000 set feedback off column tablespace_name noprin column sortorder noprin column textout format a120 spool hot_backup_$ select tablespace_name,39。139。 sortorder, 39。alter tablespace 39。 || tablespace_name || 39。 begin backup。39。 textout from dba_data_files union select tablespace_name,39。239。 sortorder, 39。host cp 39。 || file_name || 39。 39。 || 39。$backup_dir39。 textout from dba_data_files union select tablespace_name, 39。339。 sortorder, 39。alter tablespace 39。 || tablespace_name || 39。 end backup。 39。 textout from dba_data_files order by tablespace_name, sortorder, textout。 select 39。alter system archive log current。39。 from dual。 spool off @hot_backup_$ exit EOF rm f hot_backup_$ echo Hot backup finished. $log_file (四) Rman 備份 shell 程序 [oracle@oracle ~]$ cat n ! /bin/bash if [ $1 ] then backup_level=$1 else backup_level=0 fi backup_user=sys backup_user_pw=oracle catlog_user=rman catlog_user_pw=rman log_file=/oracle/admin/$ORACLE_SID/ echo Beginning rman backup... $log_file date $log_file rman target $backup_user/$backup_user_pw EOF $log_file catlog $catlog_user/$catlog_user_pw@rman backup incremental level=$backup_level database。 quit。 EOF echo rman backup finished. $log_file date $log_file (五)邏輯備份 shell 程序 [oracle@oracle ~]$ cat n ! /bin/bash log_file=/oracle/admin/$ORACLE_SID/full_exp_$ exp_arguments=userid=system/oracle buffer=10485760 owner=$1 if [ $2 ] then exp_arguments=$exp_arguments file=$2 else exp_arguments=$exp_arguments file=$ORACLE_SID fi echo Beginning full db export... $log_file echo Exporting with following arguments: $exp_arguments $log_file exp $exp_arguments $log_file 2amp。1 echo Export finished. $log_file date $log_file exp_result=$? if [ exp_result != 0 ] then mail s Errors in exporting $ORACLE_SID. $log_file Fi 五 總結(jié) 雖然在以前學(xué)習(xí)過 Linux 基礎(chǔ)課程,由于剛接觸,難以接受理解,我們只是知道了一些關(guān)于 Linux 的皮毛。這學(xué)期在 linux 平臺(tái)下進(jìn)一步學(xué)習(xí) oracle 數(shù)據(jù)庫(kù),其實(shí)又再次鞏固復(fù)習(xí)了 linux知識(shí) 我了解到了 Linux并不像我們學(xué)的 C++和 Java不一樣,可供編程和做軟件;它是跟 Windows一樣的一個(gè)操作系統(tǒng)。而正是因?yàn)楹芏嗟倪@些不一樣,我們學(xué)習(xí) Linux 差不多可以說是從頭學(xué)起。 Linux 是用 C 語 言編寫的,我們有學(xué)習(xí) C 語言的基礎(chǔ),讀程序和編寫代碼方面存在的困難小一點(diǎn),不管怎樣多花些時(shí)間動(dòng)手操作?,F(xiàn)在對(duì)如何進(jìn)入安裝 Linux、進(jìn)入 Linux 的界面、修改密碼、查看文件、增刪文件??各種各樣我們平時(shí)基本命令操作也熟悉了很多。 這學(xué)期講了很多知識(shí),從安裝虛擬機(jī),再到 linux 操作系統(tǒng),再安裝 oracle10g 數(shù)據(jù)庫(kù) ... 在本次課程設(shè)計(jì)中,學(xué)會(huì)了在 linux 平臺(tái)下安裝 oracle 10g 數(shù)據(jù)庫(kù),熟練了 linux 基本命令的操作,使用 dbca 命令創(chuàng)建數(shù)據(jù)庫(kù),圖形卸載 oracle 數(shù)據(jù)庫(kù),掌握了 mail 命令發(fā)送郵 件, putty vncview及 tel 遠(yuǎn)程連接基本實(shí)現(xiàn),配置了專用服務(wù)器,使用了 shell 腳本對(duì) oracle 數(shù)據(jù)庫(kù)的管理操作,對(duì)備份還存在不足,對(duì)一些復(fù)雜的 shell 程序達(dá)不到熟練理解, 在操作過程中遇到的問題還不能解決, 需加強(qiáng) .............. 兩周的課程設(shè)計(jì)也將結(jié)束了,數(shù)據(jù)庫(kù)老師上課給我們傳授的不僅僅是知識(shí),更重要的是一些道理,包括一些做人的道理,講課時(shí)也抓住重點(diǎn),循序漸進(jìn),讓同學(xué)理解很快;實(shí)驗(yàn)結(jié)合理論,讓我樹立了很大的信心學(xué)好這門課程,也學(xué)到了不少專業(yè)知識(shí)和技能。 總之, 非常感謝這學(xué)期數(shù)據(jù)庫(kù)老師孜孜不倦的教誨!還有同學(xué)朋友的大力幫助,我會(huì)繼續(xù)努力奮斗的。 六 參考文獻(xiàn) 《《基于 LINUX 的 ORACLE 數(shù)據(jù)庫(kù)管理》》 《《 Oracle DBA 高效指南》》
點(diǎn)擊復(fù)制文檔內(nèi)容
范文總結(jié)相關(guān)推薦
文庫(kù)吧 www.dybbs8.com
備案圖鄂ICP備17016276號(hào)-1