动态网站制作指南 [  QQ表情  ]
[ 投票调查 ]
[ 企业邮箱 ]
[ 网站空间 ]
网络编程 | 站长之家 | 网页制作 | 图形图象 | 操作系统 | 冲浪宝典 | 软件教学 | 网络办公 | 邮件系统 | 网络安全 | 认证考试 | 系统进程
ASP源码 | .Net源码 | PHP源码 | JSP源码 | JAVA源码 | CGI源码 | VB源码 | C++源码 | Delphi源码 | PB源码 | VF源码 | 汇编 | 服务器
电脑书籍下载:程序设计书籍 | 数据库教程书籍 | 平面与多媒体书籍 | 网络通讯书籍 | 系统管理书籍 | 网络安全书籍 | 认证考试书籍
Firefox | IE | Maxthon | 迅雷 | 电驴 | BitComet | FlashGet | QQ | QQ空间 | Vista | 输入法 | Ghost | Word | Excel | wps | Powerpoint
asp | .net | php | jsp | Sql | c# | Ajax | xml | Dreamweaver | FrontPages | Javascript | css | photoshop | fireworks | Flash | Cad | Discuz!
当前位置 > 网站建设学院 > 网络编程 > 数据库 > Oracle教程
Tag:注入,存储过程,分页,安全,优化,xmlhttp,fso,jmail,application,session,防盗链,stream,无组件,组件,md5,乱码,缓存,加密,验证码,算法,cookies,ubb,正则表达式,水印,索引,日志,压缩,base64,url重写,上传,控件,Web.config,JDBC,函数,内存,PDF,迁移,结构,破解,编译,配置,进程,分词,IIS,Apache,Tomcat,phpmyadmin,Gzip,触发器,socket
数据库:数据库教程,数据库技巧,Oracle教程,MySQL教程,Sybase教程,Access教程,DB2教程,数据库安全,数据库文摘
文章搜索服务
邮件订阅
输入你的邮件地址,
你将不会错过任何关于:
[ Oracle教程 ]的信息



本月文章推荐
.我没装Oracle,下面的连接代码无法.
.PL/SQL异常处理初步.
.在9i里对基于函数的索引进行仅索.
.Oracle PL/SQL语言基础(2).
.oracle建表脚本当中使用默认值.
.为什么同机安装10g和11g后会出现.
.数据文件SCN的一致性问题.
.sendmail支持的操作系统有哪些.
.研究生管理信息系统的开发流程一.
.关于fast_start_io_target的一点.
.Section 6. Solutions to common.
.了解Oracle数据库中的系统参数.
.Linux日志管理详解.
.一些oracle的论坛和网站.
.Oracle 9i 角色的管理.
.Oracle数据库在中国企业中的成功.
.不要忽视Oracle 10g STATSPACK新.
.自己做张grub启动盘防防身.
.灵活制作Linux网页.
.创建复制环境中只读实体化视图站.

ORACLE在HP-UX下的系列问题处理(19)

发表日期:2008-2-9 |



  Oracle: setprivgrp 解决7.3.3 版内存锁定权限错误
  
  问题描述
  
  新版的 Oracle, 7.3.3出现下面的错误:
  Process pid num=1 does not have mem locking privileges
  required for using large text pages in this version.
  See setprivgrp command.
  
  我运行了 adb,并安装了Oracle补丁程序,但问题仍然存在。
  
  为什么会出现这个问题?
  
  配置信息
  
  操作系统 - HP-UX
  版本 - 10.20
  硬件系统 - HP9000
  系列 - K260
  
  解决方法
  
  基本上Oracle 7.3.3 可执行文件运行了 chatr,缺省情况下它试图使用“大文本页”:超级页面,超级页面将文本映像锁定到RAM 中。试图MLOCK的组没有用setprivgrp命令授予适当的权限。
  
  假如看一下调用,它们似乎指向对oracle用户的默认组执行setprivgrp命令。Oracle 建议名字叫'dba' 的组。遗憾的是,对dba执行setprivgrp可能解决不了问题。查看正在运行该程序的用户,对该用户的组运行setprivgrp。
  
  在这个例子中,设置继续组的setprivgrp解决了问题。
  
  运行setprivgrp后,假如使用的是HFS文件系统,则不应当再出现任何问题;假如使用JFS,就会出现死锁。下面的补丁程序可以解决死锁的问题:
  
  S800 PHKL_12946
  
  S700 PHKL_12945
  
  注:补丁程序可以被后来的版本替代;因此确保加载最新的版本。
  .........following with all English text ....
  Oracle: Version 7.3.3 mem locking privileges error fixed by setprivgrp
  
  Problem Description
  
  The new version of Oracle, 7.3.3, gives this error:
  
  Process pid num=1 does not have mem locking privileges required for using large text pages in this version.
  See setprivgrp command.
  I have run adb and installed the Oracle patches, but the
  problem persists.
  
  What is the cause of this problem?
  
  Configuration Info
  
  Operating System - HP-UX
  Version - 10.20
  Hardware System - HP9000
  Series - K260
  
  Solution
  
  Basically, the Oracle 7.3.3 executable has had chatr run against it, and by default it attemps to use a 'large text page': superpage,which requires locking the text image into RAM. The group that is attempting the MLOCK has not been granted the proper privleges with the setprivgrp command.
  If you look at calls, they seem to point to executing the setprivgrp command against the default group for the oracle user. Oracle recommends a group named 'dba'. Unfortunately, executing setprivgrp against dba may not clear up the problem. Look at the user who is running the program,
  and run setprivgrp against the user's group.
  In this case, setting setprivgrp for process group resolved the problem.
  After running setprivgrp, if you are running with an HFS filesystem, you should not have any more problems. If you are running with JFS, you
  will run into a deadlock. The deadlock is fixed by these patches:
  S800 PHKL_12946
  S700 PHKL_12945
  Note: Patches can be superseded by subsequent versions;

  be sure to load the current version.
上一篇:ORACLE在HP-UX下的系列问题处理(18) 人气:389
下一篇:ORACLE在HP-UX下的系列问题处理(15) 人气:328
浏览全部Oracle教程的内容 Dreamweaver插件下载 常用网页广告代码全集
  最新网站源码 最新软件下载
2008-7-24 Sablog-X v2.0 预览版
2008-7-24 帝国备份王EmpireBak 2008 正式版
2008-7-24 网趣网上购物系统时尚版 v8.2
2008-7-24 纵横B2B电子商务系统XYECS!B2B v
2008-7-24 e路小说小偷 v1.2.0723
2008-7-24 凌风美女图片站程序 v2.2
2008-7-24 TOM15电影收索程序
2008-7-24 清风信息自动采集生成系统 v1.0
2008-7-24 QQ邮箱编辑器 v1.0 (小小菜刀ASP
2008-7-19 UltraEdit 简体中文增强版 14.10
2008-7-19 CentOS 5.2 i386 LiveCD
2008-7-19 Snapture多功能相机 v1.4
2008-7-19 iAcces中文输入法 v1.0Build016
2008-7-19 Cookbook烹饪秘籍 v2.5
2008-7-19 苹果专用DVD转换工具 v1.1.59汉化
2008-7-19 Modem修复软件ZiPhone修改版04.0
2008-7-19 AgileMessenger即时通讯工具美化
2008-7-19 Sketches画图软件 v0.7b6破解版


  发表评论
姓 名: 验证码:
内 容:
[ 汉字翻译拼音 ] [ 广告代码 ] [ 符号对照表 ] [ 进制转换 ] [ 经典小工具 ] [ 个税计算 ] [ 汉字简繁转换 ] [ 普通单位换算 ] [ 公制单位换算 ]
[ 生辰老黄历 ] [ 国内电话区号 ] [ 国家代码与域名缩写 ] [ 文字加密解密 ] [ 健康查询 ] [ 万年历 ] [ 手机号码查询 ] [ ip搜索 ] [ Google PR查询 ]
业务联系 | 广告刊登 | 频道合作 | 投稿荐稿 | 联系方式 | 加入收藏 | RSS订阅
Copyright © 2000-2008 www.knowsky.com All rights reserved | 网络实名:动态网站制作指南 | 沪ICP备05001343号