您现在的位置是:网站首页> 编程资料编程资料
Oracle11g调整SGA方法详解_oracle_
2023-05-27
1156人已围观
简介 Oracle11g调整SGA方法详解_oracle_
Oracle11gSGA调整方法
oracle11g修改sga要先修改memory_target等参数,否则服务重启时会出现错误ORA-00844: Parameter not taking MEMORY_TARGET into account, see alert log for mo
re information。
Oracle内存参数结构:

修改SGA必须保持的原则:
1.sga_target不能大于sga_max_size,可以设置为相等。
2.SGA加上PGA等其他进程占用的内存总数必须小于操作系统的物理内存。
具体命令操作如下:
C:UsersAdministrator>sqlplus/nolog SQL*Plus: Release 11.1.0.6.0 - Production on 星期三 2月 22 10:51:08 2012 Copyright (c) 1982, 2007, Oracle. All rights reserved. SQL> conn sys/sys as sysdba; 已连接。 SQL> show sga; Total System Global Area 631926784 bytes Fixed Size 1334996 bytes Variable Size 205521196 bytes Database Buffers 419430400 bytes Redo Buffers 5640192 bytes SQL> alter system set memory_max_target=700m scope=spfile; 系统已更改。 SQL> alter system set memory_target=700m scope=spfile; 系统已更改。 SQL> show sga; Total System Global Area 631926784 bytes Fixed Size 1334996 bytes Variable Size 205521196 bytes Database Buffers 419430400 bytes Redo Buffers 5640192 bytes SQL> shutdown immediate; 数据库已经关闭。 已经卸载数据库。 ORACLE 例程已经关闭。 SQL> startup; ORACLE 例程已经启动。 Total System Global Area 631926784 bytes Fixed Size 1334996 bytes Variable Size 205521196 bytes Database Buffers 419430400 bytes Redo Buffers 5640192 bytes 数据库装载完毕。 数据库已经打开。 SQL> alter system set sga_target=650m scope=spfile; 系统已更改。 SQL> alter system set sga_max_size=650m scope=spfile; 系统已更改。 SQL> shutdown immediate; 数据库已经关闭。 已经卸载数据库。 ORACLE 例程已经关闭。 SQL> startup; ORACLE 例程已经启动。 Total System Global Area 686329856 bytes Fixed Size 1335360 bytes Variable Size 205524928 bytes Database Buffers 473956352 bytes Redo Buffers 5513216 bytes 数据库装载完毕。 数据库已经打开。 SQL> show sga; Total System Global Area 686329856 bytes Fixed Size 1335360 bytes Variable Size 205524928 bytes Database Buffers 473956352 bytes Redo Buffers 5513216 bytes
附:ora-00844错误解决办法:
SQL> create pfile='c:inittest.ora' from spfile;
文件已创建。
(手动修改文件中对应的memory_target参数)
SQL> startup pfile='c:inittest.ora'; ORACLE 例程已经启动。 Total System Global Area 631926784 bytes Fixed Size 1334996 bytes Variable Size 205521196 bytes Database Buffers 419430400 bytes Redo Buffers 5640192 bytes 数据库装载完毕。 数据库已经打开。 SQL> create spfile from pfile='c:inittest.ora'; 文件已创建。 SQL> shutdown immediate; 数据库已经关闭。 已经卸载数据库。 ORACLE 例程已经关闭。 SQL> startup; ORACLE 例程已经启动。 Total System Global Area 631926784 bytes Fixed Size 1334996 bytes Variable Size 205521196 bytes Database Buffers 419430400 bytes Redo Buffers 5640192 bytes 数据库装载完毕。 数据库已经打开。
到此这篇关于Oracle11gSGA调整方法的文章就介绍到这了,更多相关Oracle11g SGA调整内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
相关内容
- Oracle 数据库层级遍历查询功能的实现_oracle_
- 大表delete删数据导致数据库异常解决_oracle_
- ORACLE分区表转换在线重定义DBMS_REDEFINITION_oracle_
- Oracle控制文件丢失恢复归档模式方法_oracle_
- 详解Oracle控制文件及日志文件的管理问题_oracle_
- Oracle中日期的使用方法实例_oracle_
- Oracle触发器和程序包的基本介绍_oracle_
- centos编译安装mariadb的详细过程_mariadb_
- MariaDB的安装与配置教程_mariadb_
- MariaDB Spider 数据库分库分表实践记录_mariadb_
