Changing an Init.ora Parameter

简介:
To change an init.ora parameter, follow these steps.
  1. Open the file called init<database_name>.ora. For example, if the database is called oraprod, then the file would be called initoraprod.ora. The file can be in a variety of places, but almost always somewhere in a subdirectory of the Oracle Installation directory on the server (also known as the ORACLE_HOME).
  2. Find the parameter that you wish to change. The parameter may not be in the file. If not, the default value is being used by Oracle. Add the parameter if it is not in the file and needs to be a non-default value.
  3. Comment out the line containing the current setting (in case the change needs to be undone). A line will be commented out (ignored by Oracle) if a pound sign (#) is placed at the beginning of the line
  4. Add a new line with the same parameter with the new setting.
 

Example

# Doubled db_cache_size from 30000000 on 5/4/2003, change made by Jeff Jones. # db_cache_size = 30000000 db_cache_size=60000000



本文转自maclean_007 51CTO博客,原文链接:http://blog.51cto.com/maclean/1277871

相关文章
|
7月前
|
JSON 网络协议 安全
【Java基础】(1)进程与线程的关系、Tread类;讲解基本线程安全、网络编程内容;JSON序列化与反序列化
几乎所有的操作系统都支持进程的概念,进程是处于运行过程中的程序,并且具有一定的独立功能,进程是系统进行资源分配和调度的一个独立单位一般而言,进程包含如下三个特征。独立性动态性并发性。
361 1
|
人工智能 自然语言处理 Java
FastExcel:开源的 JAVA 解析 Excel 工具,集成 AI 通过自然语言处理 Excel 文件,完全兼容 EasyExcel
FastExcel 是一款基于 Java 的高性能 Excel 处理工具,专注于优化大规模数据处理,提供简洁易用的 API 和流式操作能力,支持从 EasyExcel 无缝迁移。
3765 65
FastExcel:开源的 JAVA 解析 Excel 工具,集成 AI 通过自然语言处理 Excel 文件,完全兼容 EasyExcel
|
Java 对象存储 开发者
如何找出Java进程占用CPU高的元凶
本文记录了一次Java进程CPU占用率过高的问题和排查思路。
GrayLog5.2版本单节点一键部署脚本
GrayLog5.2版本单节点一键部署脚本
858 0
|
Java 关系型数据库 MySQL
springboot招聘信息管理系统 毕业设计-附源码
springboot招聘信息管理系统 毕业设计-附源码
|
Java 数据库连接 Apache
Hutool工具包等常用工具类总结
Hutool工具包等常用工具类总结
2183 0
|
消息中间件 存储 Kafka
【Kafka从入门到放弃系列 二】Kafka集群搭建及基本命令
【Kafka从入门到放弃系列 二】Kafka集群搭建及基本命令
369 0

热门文章

最新文章