ORA-02095: specified initialization parameter cannot be modified

简介: <p><br></p> <p></p> <div class="article_title" style="margin:5px 0px; line-height:30px; font-family:'Microsoft YaHei'"> <h1 style="font-weight:normal; margin:0px; padding:0px; display:inline; v


ORA-02095: 无法修改指定的初始化参数

SQL> ALTER SYSTEM SET processes=400 SCOPE=BOTH SID='KMIS1';
ALTER SYSTEM SET processes=400 SCOPE=BOTH SID='KMIS1'
                 *
ERROR at line 1:
ORA-02095: specified initialization parameter cannot be modified

参数

alter session set processes = 100;

会报相应的错误因为processes属性isses_modifiable的值为false;

有些参数不能动态修改,需要使用ALTER SYSTEM SET parameter = value scope = spfile, 然后重新启动数据库才能生效.

alter system set parameter = value 使用的默认scope=both, 包括同时修改spfile和当前的设置.


这个参数是static的,而非dynamic的.不可动态修改. 
<<database reference>>
v$parameter: isses_modifiable & issys_modifiable

目录
相关文章
|
8月前
|
关系型数据库 MySQL 数据安全/隐私保护
问题:ERROR 1819 (HY000) Your password does not satisfy the current policy requirements
问题:ERROR 1819 (HY000) Your password does not satisfy the current policy requirements
63 0
|
9月前
|
安全 关系型数据库 MySQL
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements问题处理
【5月更文挑战第8天】ERROR 1819 (HY000): Your password does not satisfy the current policy requirements问题处理
1359 2
|
9月前
|
安全 关系型数据库 MySQL
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
98 2
|
Linux
WARNING: Re-reading the partition table failed with error 22: Invalid argument
在划分磁盘分区时,遇到错误“WARNING: Re-reading the partition table failed with error 22: Invalid argument” 如下所示: [root@DB-Server u02]# fdisk -l   Disk /dev/sda: 500.
2559 0
|
关系型数据库 MySQL 数据安全/隐私保护
|
SQL 监控 数据库
ORA-32004: obsolete and/or deprecated parameter(s) specified
如果在启动数据库时遇到ORA-32004: obsolete and/or deprecated parameter(s) specified 错误,这个是因为数据库里面设置了过时或不推荐使用的参数,如下描述所示: SQL> ho oerr ora 3200432004, 00000, "obsol...
1284 0

热门文章

最新文章