ORA-00824:cannot set sga_target due to existing internal setting --SOLUTION
SQL*Plus: Release 10.2.0.1.0 - Production on Thu Oct 14 21:46:55 2010
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to an idle instance.
SQL> startup
ORA-00824: cannot set sga_target due to existing internal settings, see alert log for more information
#to solve this problem#
1-create pfile from your spfiel
SQL> create pfile from spfile='E:oracleproduct10.2.0db_1dbsSPFILEORCL.ORA';
File created.
SQL> exit
Disconnected
2- open the pfile and make this changes and save it
delete this parameters
orcl.__java_pool_size=4194304
orcl.__large_pool_size=4194304
orcl.__shared_pool_size=96468992
orcl.__streams_pool_size=0
*.db_block_buffers=512
change value of this parameters to zero
*.sga_max_size=471859200 ----------> *.sga_max_size=0
*.sga_target=38294344 -----------> *.sga_target=0
change value of this parameters
*.db_cache_size=272629760 ----------> *.db_cache_size=272629760
.java_pool_size= 0 ---------->.java_pool_size=104857600
.large_pool_size=0 ---------->.large_pool_size=104857600
.shared_pool_size=0 ---------->.shared_pool_size=104857600
3-startup the database from pfile
SQL> startup pfile='E:oracleproduct10.2.0db_1databaseinitorcl.ora';
ORACLE instance started.
Total System Global Area 306184192 bytes
Fixed Size 1248696 bytes
Variable Size 205521480 bytes
Database Buffers 96468992 bytes
Redo Buffers 2945024 bytes
Database mounted.
Database opened.
4-create spfile from pfile and restart your database
SQL> create spfile from pfile;
File created.
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup
ORACLE instance started.
Total System Global Area 306184192 bytes
Fixed Size 1248696 bytes
Variable Size 205521480 bytes
Database Buffers 96468992 bytes
Redo Buffers 2945024 bytes
Database mounted.
Database opened.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25261409/viewspace-1052140/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 手工建庫啟動例項時一個小錯誤:ORA-00824: cannot set sga_target due to existing internal settings
- 【題解】Solution Set - 「藍」題板刷
- Cannot set property 'innerHTML' of nullHTMLNull
- Cannot set property ‘type‘ of null(vue)NullVue
- GC Agent Startup Fails on AIX due to Invalid Timezone Setting at OS_825933.1GCAI
- BUG——AngularJS:Cannot set property ‘pic‘ of undefinedAngularJSUndefined
- cannot set user id: Resource temporarily unavailableAI
- 提交App中斷出現 Cannot proceed with delivery an existing transporter instanAPP
- Error 945 Database cannot be opened due to inaccessible files or insufficient memory or disk spaceErrorDatabase
- 【題解】Solution Set - NOIP2024模擬賽4
- 【題解】Solution Set - NOIP2024模擬賽2
- 【題解】Solution Set - NOIP2024集訓Day57 字串字串
- 【題解】Solution Set - NOIP2024集訓Day26 dp
- [20210418]ORA-14767 Cannot specify this interval with existing high bounds.txt
- su cannot set user id Resource temporarily unavailable故障解決AI
- 【題解】Solution Set - NOIP2024集訓Day71 貪心
- set udev for setting disk permiss on ASM when using multipath OL 6.x_1521757.1devASM
- 【題解】Solution Set - NOIP2024集訓Day44-45 圖論圖論
- 【題解】Solution Set - NOIP2024集訓Day2 線段樹
- 【題解】Solution Set - NOIP2024集訓Day14 CDQ分治
- su - oracle報錯su: cannot set user id: Resource temporarily unavailableOracleAI
- ORA-00265: instance recovery required, cannot set ARCHIVELOGUIHive
- (問題解決)Cannot set LC_CTYPE to default locale: No such file or directory
- 452 Error writing file: A file cannot be larger than the value set by ulimit.ErrorMIT
- SQL SERVER恢復資料錯誤解決:The backup set holds a backup of a database other than the existingSQLServerDatabase
- 【題解】Solution Set - NOIP2024集訓Day56 雜湊雜題
- 【題解】Solution Set - NOIP2024集訓Day7 李超線段樹
- 【題解】Solution Set - NOIP2024集訓Day9 樹上問題
- ORA-00265: instance recovery required, cannot set ARCHIVELOG modeUIHive
- sendmail settingAI
- 【題解】Solution Set - NOIP2024集訓Day52 圖論雜題2圖論
- 【題解】Solution Set - NOIP2024集訓Day55 圖論雜題3圖論
- 【題解】Solution Set - NOIP2024集訓Day20 DP常⻅模型1「序列」模型
- SGA_TARGET Advice
- 【題解】Solution Set - NOIP2024集訓Day18 最佳化建圖
- 【題解】Solution Set - NOIP2024集訓Day22 DP常⻅模型3「區間」模型
- 【題解】Solution Set - NOIP2024集訓Day23 DP常⻅模型3「區間」模型
- oracle ORA-00824 問題解決 (一)Oracle