DevTech101

DevTech101

em13c

OEM 13c and Oracle Database Patch Errors

One of the requirements for upgrading to Enterprise Manager Cloud Control 13c Release 2, is to apply. Database patch set update 160419 While trying to apply the patch to Oracle GI + DB, it will error out with non existing files (more below…). opatchauto apply 22899531 System initialization log file is /u01/app/grid/12.1.0.1/grid/cfgtoollogs/opatchautodb/systemconfig2016-10-06_02-29-43PM.log. Session log file …

OEM 13c and Oracle Database Patch Errors Read More »

Oracle Enterprise Manager, ASM Tips and Tricks

Contents 1 To set system password 2 EM Cloud control help 3 EM cloud control process order 4 How to deploy a plugin 5 References To set system password ALTER USER system IDENTIFIED BY password; EM Cloud control help #To stop Oracle Management Service GUI only emctl stop oms # To stop all services emctl …

Oracle Enterprise Manager, ASM Tips and Tricks Read More »

Enterprise Manager Deleting Targets Manually With CLI

Enterprise Manager deleting a target manually First stop the agent. ./emctl stop agent Oracle Enterprise Manager Cloud Control 13c Release 1 Copyright (c) 1996, 2015 Oracle Corporation. All rights reserved. Stopping agent … stopped. emcli login -username=sysman emcli sync emcli delete_target -name=”em-host.domain.com:3872″ -type=”oracle_emd” -delete_monitored_targets Now Uninstall the agent export ORACLE_HOME=export ORACLE_HOME=/u01/app/agent/core/12.1.0.2.0 $ORACLE_HOME/oui/bin/runInstaller -deinstall -removeallfiles # …

Enterprise Manager Deleting Targets Manually With CLI Read More »

Oracle Enterprise Manager 13c with Oracle DB Configuration Modifications

How to increase Oracle Database log size alter database add logfile size 600m; alter database drop logfile group 1; select l.group# , l.bytes , l.status , l.archived , lf.member from v$logfile lf , v$log l where lf.group# = l.group#; alter system switch logfile; alter system checkpoint; alter database drop logfile group [ active log]; Change …

Oracle Enterprise Manager 13c with Oracle DB Configuration Modifications Read More »