欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

11gasmpfile&spfile

默認數(shù)據(jù)庫安裝完成,在ORACLE_HOME/dbs目錄下并未發(fā)現(xiàn)ASM的pfile和spfile,手動創(chuàng)建pfile和pfile如下:

創(chuàng)新互聯(lián)專注于東遼網(wǎng)站建設服務及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供東遼營銷型網(wǎng)站建設,東遼網(wǎng)站制作、東遼網(wǎng)頁設計、東遼網(wǎng)站官網(wǎng)定制、小程序制作服務,打造東遼網(wǎng)絡公司原創(chuàng)品牌,更為您提供東遼網(wǎng)站排名全網(wǎng)營銷落地服務。


$ exit
# su - grid
$ srvctl config asm
ASM home: /oracle/app/product/11.2.0
ASM listener: LISTENER
Spfile: +DATADG/asm/asmparameterfile/registry.253.970045839   ##此文件并不存在
ASM diskgroup discovery string: 
$ 

$ cd $ORACLE_HOME/dbs
##目錄下并沒有ASM的pfile和spfile
$ ls
ab_+ASM.dat  hc_+ASM.dat  init.ora     orapw+ASM
$ 

##手動指定spfile 的路徑
$srvctl modify asm -p /oracle/app/product/11.2.0/dbs/spfile+ASM.ora

$ srvctl config asm
ASM home: /oracle/app/product/11.2.0
ASM listener: LISTENER
Spfile: /oracle/app/product/11.2.0/dbs/spfile+ASM.ora
ASM diskgroup discovery string: 
$ sqlplus / as sysasm

SQL*Plus: Release 11.2.0.4.0 Production on Fri Mar 16 08:50:26 2018

Copyright (c) 1982, 2013, Oracle.  All rights reserved.

Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Automatic Storage Management option
##創(chuàng)建spfile
SQL> create spfile from memory;

File created.

SQL> 
##查看spfile 是否生成
SQL> !ls -l
total 56
-rw-rw----    1 grid     oinstall       1676 Mar 07 10:02 ab_+ASM.dat
-rw-rw----    1 grid     oinstall       1544 Mar 16 08:44 hc_+ASM.dat
-rw-r--r--    1 grid     oinstall       2851 May 15 2009  init.ora
-rw-r-----    1 grid     oinstall       1536 Mar 06 09:10 orapw+ASM
-rw-r-----    1 grid     oinstall      11776 Mar 16 08:50 spfile+ASM.ora   ##文件已生成

SQL> 

$ which crsctl
/oracle/app/product/11.2.0/bin/crsctl
$ exit
##重啟數(shù)據(jù)庫
# /oracle/app/product/11.2.0/bin/crsctl stop has
CRS-2791: Starting shutdown of Oracle High Availability Services-managed resources on 'mng'
CRS-2673: Attempting to stop 'ora.mngdb.db' on 'mng'
CRS-2673: Attempting to stop 'ora.LISTENER.lsnr' on 'mng'
CRS-2677: Stop of 'ora.mngdb.db' on 'mng' succeeded
CRS-2673: Attempting to stop 'ora.DATA.dg' on 'mng'
CRS-2677: Stop of 'ora.DATA.dg' on 'mng' succeeded
CRS-2673: Attempting to stop 'ora.asm' on 'mng'
CRS-2677: Stop of 'ora.LISTENER.lsnr' on 'mng' succeeded
CRS-2677: Stop of 'ora.asm' on 'mng' succeeded
CRS-2673: Attempting to stop 'ora.cssd' on 'mng'
CRS-2677: Stop of 'ora.cssd' on 'mng' succeeded
CRS-2673: Attempting to stop 'ora.evmd' on 'mng'
CRS-2677: Stop of 'ora.evmd' on 'mng' succeeded
CRS-2793: Shutdown of Oracle High Availability Services-managed resources on 'mng' has completed
CRS-4133: Oracle High Availability Services has been stopped.
#  /oracle/app/product/11.2.0/bin/crsctl start has
CRS-4123: Oracle High Availability Services has been started.

# su - grid
$ srsqlplus / as sysdba

SQL*Plus: Release 11.2.0.4.0 Production on Fri Mar 16 08:54:14 2018

Copyright (c) 1982, 2013, Oracle.  All rights reserved.

Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Automatic Storage Management option

##發(fā)現(xiàn)已經(jīng)可以檢測到spfile
SQL> show parameter spfile;

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
spfile                               string      /oracle/app/product/11.2.0/dbs
                                                 /spfile+ASM.ora
SQL> 
##創(chuàng)建pfile
SQL> create pfile from spfile;

File created.

SQL> exit
Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Automatic Storage Management option
$ cd $ORACLE_HOME/dbs
$ ls -l
##pfile已經(jīng)發(fā)現(xiàn)
total 72
-rw-rw----    1 grid     oinstall       1676 Mar 16 08:53 ab_+ASM.dat
-rw-rw----    1 grid     oinstall       1544 Mar 16 08:53 hc_+ASM.dat
-rw-r--r--    1 grid     oinstall       5242 Mar 16 08:54 init+ASM.ora
-rw-r--r--    1 grid     oinstall       2851 May 15 2009  init.ora
-rw-r-----    1 grid     oinstall       1536 Mar 06 09:10 orapw+ASM
-rw-r-----    1 grid     oinstall      11776 Mar 16 08:50 spfile+ASM.ora
$ more init+ASM.ora   ##pfile讀寫
*._aggregation_optimization_settings=0
*._always_anti_join='CHOOSE'
*._always_semi_join='CHOOSE'
*._and_pruning_enabled=TRUE
...略..........................

網(wǎng)站欄目:11gasmpfile&spfile
標題來源:http://aaarwkj.com/article0/igigoo.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供自適應網(wǎng)站電子商務、網(wǎng)站導航、網(wǎng)站改版、搜索引擎優(yōu)化

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

外貿(mào)網(wǎng)站制作
国产精品一区二区激情视频| 亚洲男人的天堂久久精品| 亚洲欧美日韩性生活视频| 中文字幕二区三区av| 欧美日韩另类综合一区| 色偷偷亚洲精品一区二区| 日韩一区二区偷拍视频| 国产精品美女黄色av| 欧美美女午夜福利视频| 国产日韩欧美亚洲中文国| 一级欧美黄片在线播放| 中文字幕欧美人妻在线| 精品国产91久久粉嫩懂色| 国产国产精品人在线观看| 亚洲全乱码精品一区二区| 亚洲午夜一区二区不卡| 国产传媒视频在线观看| 中文岳妇荡欲丰满肥熟| 国产自拍最新在线视频| 日本成人午夜电影网站| 亚洲男人天堂在线观看| 97精品在线视频免费| 亚洲欧美日韩校园春色| 人妻av天堂综合一区| 蜜臀视频一区二区在线播放| 中文字幕制服国产精品| 偷拍丝袜美腿亚洲超碰| 婷婷亚洲五月伊人91| 92午夜福利在线视频| 欧美高清成人一区二区三区| 欧美精品一区二区三区黄片| 在线国产视频一区二区三区| 99久久这里只有精品视频| 在线日韩欧美一区二区三区| av中文字幕一二三区| 日本在线不卡一二三区| 中文欧美一区二区精品| 亚洲品质一区二区三区| 夜夜草av一区二区三区| 国产91在线一区精品| 日本中文字幕黄色人妻|