<output id="qn6qe"></output>

    1. <output id="qn6qe"><tt id="qn6qe"></tt></output>
    2. <strike id="qn6qe"></strike>

      亚洲 日本 欧洲 欧美 视频,日韩中文字幕有码av,一本一道av中文字幕无码,国产线播放免费人成视频播放,人妻少妇偷人无码视频,日夜啪啪一区二区三区,国产尤物精品自在拍视频首页,久热这里只有精品12

      LINUX中ORACLE 11.2.0.1 升級到11.2.0.4

      11.2.0.4補(bǔ)丁號13390677,共7個(gè)文件,分別是image

      其中1&2是db,3是grid,4是client,5是gateways,6是example,7是deinstall

      上傳安裝介質(zhì)并解壓

      [oracle@localhost db]$ unzip -q p13390677_112040_Linux-x86-64_1of7.zip -d ~
      [oracle@localhost db]$ unzip -q p13390677_112040_Linux-x86-64_2of7.zip -d ~
      

      然后查看數(shù)據(jù)庫信息

      [oracle@localhost database]$ sql
      
      SQL*Plus: Release 11.2.0.1.0 Production on Tue Mar 19 15:19:39 2019
      
      Copyright (c) 1982, 2009, Oracle.  All rights reserved.
      
      
      Connected to:
      Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
      With the Partitioning, OLAP, Data Mining and Real Application Testing options
      
      15:19:39 SYS@orcl> show parameter name
      
      NAME                                 TYPE        VALUE
      ------------------------------------ ----------- ------------------------------
      db_file_name_convert                 string
      db_name                              string      orcl
      db_unique_name                       string      orcl
      global_names                         boolean     FALSE
      instance_name                        string      orcl
      lock_name_space                      string
      log_file_name_convert                string
      service_names                        string      orcl
      15:19:49 SYS@orcl>
      

      清空回收站

      15:19:49 SYS@orcl> purge dba_recyclebin;
      
      DBA Recyclebin purged.
      
      Elapsed: 00:00:00.02
      15:21:23 SYS@orcl> select count(1) from dba_recyclebin;
      
        COUNT(1)
      ----------
               0
      
      Elapsed: 00:00:00.01
      15:21:36 SYS@orcl>
      

      查看無效對象

      15:21:36 SYS@orcl> select count(*) from dba_objects where status<>'VALID'; 
      
        COUNT(*)
      ----------
               0
      

      備份數(shù)據(jù)庫,因?yàn)槭菧y試庫沒數(shù)據(jù)就算了 關(guān)閉數(shù)據(jù)庫,關(guān)閉監(jiān)聽

      15:31:52 SYS@orcl> shutdown immediate;
      Database closed.
      Database dismounted.
      ORACLE instance shut down.
      15:34:01 SYS@orcl> Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
      With the Partitioning, OLAP, Data Mining and Real Application Testing options
      [oracle@localhost database]$ lsnrctl stop
      
      LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 19-MAR-2019 15:35:13
      
      Copyright (c) 1991, 2009, Oracle.  All rights reserved.
      
      Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
      The command completed successfully
      [oracle@localhost database]$
      

      創(chuàng)建新的home目錄并設(shè)置環(huán)境變量

      [oracle@localhost database]$ mkdir -p /u01/app/oracle/product/11.2.0/dbhome_2/
      [oracle@localhost database]$ export ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_2
      [oracle@localhost database]$ ./runInstaller
      

      接著圖形操作,i wish to receive ..這個(gè)勾去掉 image然后選擇Skip software updates,image選擇update an existing databaseimage選擇語言,image選擇企業(yè)版,image選擇目錄image確認(rèn)組image預(yù)檢查后忽略錯(cuò)誤繼續(xù),中間遇到報(bào)錯(cuò)也continue繼續(xù)imageimageimageimageimageimageimage執(zhí)行root腳本image

      [root@localhost ~]# /u01/app/oracle/product/11.2.0/dbhome_2/root.sh
      Performing root user operation for Oracle 11g 
      
      The following environment variables are set as:
          ORACLE_OWNER= oracle
          ORACLE_HOME=  /u01/app/oracle/product/11.2.0/dbhome_2
      
      Enter the full pathname of the local bin directory: [/usr/local/bin]: 
      The contents of "dbhome" have not changed. No need to overwrite.
      The file "oraenv" already exists in /usr/local/bin.  Overwrite it? (y/n) 
      [n]: y
         Copying oraenv to /usr/local/bin ...
      The file "coraenv" already exists in /usr/local/bin.  Overwrite it? (y/n) 
      [n]: y
         Copying coraenv to /usr/local/bin ...
      
      Entries will be added to the /etc/oratab file as needed by
      Database Configuration Assistant when a database is created
      Finished running generic part of root script.
      Now product-specific root actions will be performed.
      Finished product-specific root actions.
      [root@localhost ~]# 
      

      imageimage配置完監(jiān)聽后image下一步imageimageimageimage不移動數(shù)據(jù)文件image選擇閃回恢復(fù)區(qū)及其大小imageimage點(diǎn)擊finish后,界面出現(xiàn)一個(gè)小豎條,不過可以拉開 如下imageimageimageimageimageimageimage設(shè)置下sqlplus

      [oracle@localhost admin]$ vim glogin.sql 
      Define _editor='vi'
      Set sqlprompt "_user'@'_connect_identifier> "
      set time on
      set timing on
      set pagesize 40
      set linesize 120
      
      [oracle@localhost admin]$ sql
      
      SQL*Plus: Release 11.2.0.1.0 Production on Tue Mar 19 16:53:47 2019
      
      Copyright (c) 1982, 2009, Oracle.  All rights reserved.
      
      
      Connected to:
      Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
      With the Partitioning, OLAP, Data Mining and Real Application Testing options
      
      16:53:47 SYS@orcl> select * from v$version;
      
      BANNER
      --------------------------------------------------------------------------------
      Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
      PL/SQL Release 11.2.0.4.0 - Production
      CORE    11.2.0.4.0      Production
      TNS for Linux: Version 11.2.0.4.0 - Production
      NLSRTL Version 11.2.0.4.0 - Production
      
      Elapsed: 00:00:00.01
      16:53:55 SYS@orcl>
      

      have fun

      posted @ 2019-08-31 14:07  九命貓幺  閱讀(3213)  評論(0)    收藏  舉報(bào)
      主站蜘蛛池模板: 国产一区国产二区在线视频 | 国产精品无遮挡一区二区| 欧美成人aaa片一区国产精品| 久久99国产亚洲高清观看首页| 国产一区二区亚洲精品| 人妻激情视频一区二区三区| 最新午夜男女福利片视频| 亚洲精品一区国产精品| 国产天美传媒性色av高清| 精品国内自产拍在线观看| 最新的国产成人精品2020| 成在线人免费视频| 国产亚洲精品第一综合另类| 亚洲理论在线A中文字幕| 久久精品国产精品第一区| 无码日韩做暖暖大全免费不卡| 永久免费无码网站在线观看| 亚洲国产精品成人综合色在| 国产明星精品无码AV换脸| 蜜桃av色偷偷av老熟女| 日韩中文字幕亚洲精品| 无码日韩av一区二区三区| 与子敌伦刺激对白播放| 真实单亲乱l仑对白视频| 少妇撒尿一区二区在线视频| 最新的国产成人精品2020| 久久AV中文综合一区二区| 在线成人国产天堂精品av| 开心激情站开心激情网六月婷婷| 国产精品无码a∨精品| 久久天天躁狠狠躁夜夜婷| 鲁一鲁一鲁一鲁一澡| 午夜免费视频国产在线| 人妻丰满熟妇AV无码区乱| 国产目拍亚洲精品二区| 91精品久久一区二区三区| 亚洲日韩av无码中文字幕美国 | 国产a网站| 人妻丰满熟妇av无码区| 亚洲黄色第一页在线观看| 亚洲国产成人精品无码区在线观看 |