博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ORA-00845
阅读量:6477 次
发布时间:2019-06-23

本文共 1828 字,大约阅读时间需要 6 分钟。

hot3.png

[oracle@centosinfa ~]$ sqlplus / as sysdbaSQL*Plus: Release 11.2.0.1.0 Production on Mon Dec 16 16:31:00 2013Copyright (c) 1982, 2009, Oracle.  All rights reserved.Connected to an idle instance.SQL> startupORA-00845: MEMORY_TARGET not supported on this system

怎么回事啊

[oracle@centosinfa ~]$ oerr ora 0084500845, 00000, "MEMORY_TARGET not supported on this system"// *Cause: The MEMORY_TARGET parameter was not supported on this operating system or /dev/shm was not sized correctly on Linux.// *Action: Refer to documentation for a list of supported operating systems. Or, size /dev/shm to be at least the SGA_MAX_SIZE on each Oracle instance running on the system.

查询一下SGA_MAX_SIZE的大小

SQL> show parameter SGA_MAX_SIZE;NAME                                 TYPE        VALUE------------------------------------ ----------- ------------------------------sga_max_size                         big integer 748MSQL>
[root@centosinfa ~]# df -hFilesystem                    Size  Used Avail Use% Mounted on/dev/mapper/VolGroup-lv_root   50G   25G   23G  53% /tmpfs                         1.0G  487M  537M  48% /dev/shm/dev/sda1                     485M   76M  384M  17% /boot/dev/mapper/VolGroup-lv_home   48G  9.9G   36G  22% /home

所以只有增加/dev/shm的大小了。

[root@centosinfa ~]# vim /etc/fstab增加一个size,m代表MB,g代表GB。例如我的修改:[root@centosinfa ~]# grep shm /etc/fstab tmpfs                   /dev/shm                tmpfs   defaults,size=2000m        0 0

然后不用重启就生效:

[root@centosinfa ~]# mount -o remount tmpfs

OK,现在再来启动Oracle;

SQL> startupORACLE instance started.Total System Global Area  780824576 bytesFixed Size                  2217424 bytesVariable Size             591399472 bytesDatabase Buffers          180355072 bytesRedo Buffers                6852608 bytesDatabase mounted.Database opened.

转载于:https://my.oschina.net/swuly302/blog/185209

你可能感兴趣的文章
Android项目——实现时间线程源码
查看>>
招商银行信用卡重要通知:消费提醒服务调整,300元以下消费不再逐笔发送短信...
查看>>
C#_delegate - 调用列表
查看>>
[转]Windows的批处理脚本
查看>>
多维数组元素的地址
查看>>
数据库运维体系_SZMSD
查看>>
福大软工1816 · 第三次作业 - 结对项目1
查看>>
静态库 调试版本 和发布版本
查看>>
JAVA中的finalize()方法
查看>>
慕课网学习手记--炫丽的倒计时效果Canvas绘图与动画基础
查看>>
基本分类方法——KNN(K近邻)算法
查看>>
.NET Framework3.0/3.5/4.0/4.5新增功能摘要
查看>>
熟悉常用的Linux操作
查看>>
面象过程与面象对象
查看>>
谷歌设置支持webgl
查看>>
js的AJAX请求有关知识总结
查看>>
Eclipse添加新server时无法选择Tomcat7的问题
查看>>
nginx 配置https 负载均衡
查看>>
三分 POJ 2420 A Star not a Tree?
查看>>
修改OBS为仅直播音频
查看>>