052-part4-EM-instance-manger

简介: 建立EM1、建立EM资料库emca -repos recreate2、配置DBCONTROLemca -config dbcontrol db3、启动[oracle@localhost admin]$ emctl start dbconsoleTZ set to...
建立EM
1、建立EM资料库
emca -repos recreate
2、配置DBCONTROL
emca -config dbcontrol db
3、启动
[oracle@localhost admin]$ emctl start dbconsole
TZ set to Asia/Chungking
Oracle Enterprise Manager 10g Database Control Release 10.2.0.1.0 
Copyright (c) 1996, 2005 Oracle Corporation.  All rights reserved.
http://localhost.localdomain:1158/em/console/aboutApplication
 - An instance of Oracle Enterprise Manager 10g Database Control is already running.
 4、关闭
 emctl stop dbconsole
 
 
查看那些参数可以动态修改
select * from v$system_parameter2 where ISSYS_MODIFIABLE'FALSE';
查看那些参数是基本参数
 select * from v$system_parameter2 where ISBASIC='TRUE';
 
 
ALTER SYSTEM SET  ** scope=spfile 修改SPFILE文件上的参数,必须重启生效,适用所有参数
ALTER SYSTEM SET  ** scope=memory 修改当前实例中的参数,立即生效,适用于ISSYS_MODIFIABLE='IMMEDIATE'的参数
ALTER SYSTEM SET  ** scope=both   修改SPFILE和当前实例中的参数,立即生效,适用于ISSYS_MODIFIABLE='IMMEDIATE'的参数
ALTER SYSTEM SET  SORT_AREA_SIZE=77777 DEFERRED 修改SPFILE和当前实例的参数,但是生效是对随后的会话,适用于ISSYS_MODIFIABLE='DEFERRED'的参数,这种参数非常少。
相关文章
|
7月前
|
关系型数据库 MySQL
Packet for query is too large (4,544,730 > 4,194,304). You can change this value on the server by se
Packet for query is too large (4,544,730 > 4,194,304). You can change this value on the server by se
245 0
|
7月前
|
前端开发 JavaScript
Error_ Multipart_ Boundary not foun
Error_ Multipart_ Boundary not foun
114 0
|
前端开发 5G
Search space set group switching(一)
根据R17 38.300的描述,UE可以通过PDCCH monitoring adaptation机制实现power saving的目的,这其中就包括PDCCH monitoring skipping和search space set group (SSSG) switching两种机制。PDCCH monitoring skipping是R17才提出的机制,就是UE 可以在PDCCH skipping的时间内不监视 PDCCH的功能;search space set group (SSSG) switching R16提出,R17进行了部分增强。
|
Windows
Illegal character in opaque part at index
Illegal character in opaque part at index
|
Java
java实战小结-Controller报错:Content type ‘multipart/form-data;boundary=----WebKitFormBoundaryxxxx not supp
java实战小结-Controller报错:Content type ‘multipart/form-data;boundary=----WebKitFormBoundaryxxxx not supp
432 0
SAP WM Storage Type Capacity Check Method 5 (Usage check based on SUT)
SAP WM Storage Type Capacity Check Method 5 (Usage check based on SUT)
SAP WM Storage Type Capacity Check Method 5 (Usage check based on SUT)
Cannot find source code based button in SE24
When you are logging on to customer system for incident handling, you want to switch to source code to perform some keyword search. However, you could not find button “Source code based builder” in toolbar, with following warning message: ———————————————— 版权声明:本文为CSDN博主「汪子熙」的原创文章,遵循CC 4.0 BY-SA版权协
Cannot find source code based button in SE24
Posted content type isn't multipart/form-data
Posted content type isn't multipart/form-data
527 0
|
Java 数据安全/隐私保护 安全
Illegal key size or default parameters
java中使用AES对称加密后,请求报错: Caused by: java.lang.RuntimeException: java.security.InvalidKeyException: Illegal key size or default parameters at com.
5663 0