Alert logs in alert_orcl.log

Hello:
I was monitoring the database and noticed one of the log file by name : alert_orcl.log is printing the below attached value every time:
Wondering is this too much logging and if so what should I do to disable this.
I'm using oracle 10.1.2.0.0 developer release for AMD64 bit windows 2003 server
Thanks
Fri Sep 02 15:37:52 2005
Private_strands 0 at log switch
Thread 1 advanced to log sequence 731
Current log# 2 seq# 731 mem# 0: C:\ORACLE10G\RDBMS\LOGS\REDO02.DBF
Fri Sep 02 15:38:37 2005
Private_strands 0 at log switch
Thread 1 advanced to log sequence 732
Current log# 3 seq# 732 mem# 0: C:\ORACLE10G\RDBMS\LOGS\REDO03.DBF
Fri Sep 02 15:39:02 2005
Private_strands 0 at log switch
Thread 1 advanced to log sequence 733
Current log# 1 seq# 733 mem# 0: C:\ORACLE10G\RDBMS\LOGS\REDO01.DBF
Fri Sep 02 15:39:25 2005
Private_strands 0 at log switch
Thread 1 advanced to log sequence 734
Current log# 2 seq# 734 mem# 0: C:\ORACLE10G\RDBMS\LOGS\REDO02.DBF
Fri Sep 02 15:40:28 2005
Private_strands 0 at log switch
Thread 1 advanced to log sequence 735
Current log# 3 seq# 735 mem# 0: C:\ORACLE10G\RDBMS\LOGS\REDO03.DBF

I use these scripts to monitor Undo Segments and logswitches
set linesize 120
set pagesize 60
alter session set nls_date_format = "dd-Mon-yyyy hh24:mi:ss";
COL TXNCOUNT FOR 99,999,999 HEAD 'Txn. Cnt.'
COL MAXQUERYLEN FOR 99,999,999 HEAD 'Max|Query|Sec'
COL MAXCONCURRENCY FOR 9,999 HEAD 'Max|Concr|Txn'
COL bks_per_sec FOR 99,999,999 HEAD 'Blks per|Second'
COL kb_per_second FOR 99,999,999 HEAD 'KB per|Second'
COL undo_mb_required FOR 999,999 HEAD 'MB undo|Needed'
COL ssolderrcnt FOR 9,999 HEAD 'ORA-01555|Count'
COL nospaceerrcnt FOR 9,999 HEAD 'No Space|Count'
break on report
compute max of txncount -
maxquerylen -
maxconcurrency -
bks_per_sec -
kb_per_second -
undo_mb_required on report
SELECT begin_time,
txncount-lag(txncount) over (order by end_time) as txncount,
maxquerylen,
maxconcurrency,
undoblks/((end_time - begin_time)*86400) as bks_per_sec,
(undoblks/((end_time - begin_time)*86400)) * t.block_size/1024 as kb_per_second,
((undoblks/((end_time - begin_time)*86400)) * t.block_size/1024) * TO_NUMBER(p2.value)/1024 as undo_MB_required,
ssolderrcnt,
nospaceerrcnt
FROM v$undostat s,
dba_tablespaces t,
v$parameter p,
v$parameter p2
WHERE t.tablespace_name = UPPER(p.value)
AND p.name = 'undo_tablespace'
AND p2.name = 'undo_retention'
ORDER BY begin_time;
show parameter undo
clear computes
select substr(to_char(FIRST_TIME,'DY, YYYY/MM/DD'),1,15),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'00',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'00',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'01',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'01',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'02',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'02',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'03',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'03',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'04',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'04',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'05',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'05',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'06',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'06',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'07',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'07',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'08',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'08',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'09',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'09',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'10',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'10',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'11',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'11',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'12',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'12',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'13',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'13',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'14',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'14',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'15',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'15',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'16',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'16',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'17',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'17',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'18',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'18',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'19',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'19',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'20',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'20',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'21',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'21',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'22',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'22',1,0))),
decode(sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'23',1,0)),0,'-',sum(decode(substr(to_char(FIRST_TIME,'HH24'),1,2),'23',1,0)))
from sys.v_$log_history
group by substr(to_char(FIRST_TIME,'DY, YYYY/MM/DD'),1,15)
order by substr(to_char(FIRST_TIME,'DY, YYYY/MM/DD'),1,15) desc;
---------------------------------------------------------------------------------------------------

Similar Messages

  • Alert Email notification for Log file alerts

    Hi,
    Scenario: SCOM 2012 R2 UR4.
    There are created unix/linux log file monitoring objects. In SCOM console I can view alerts related to unix/linux log file monitoring. Email notification is: Warning or Critical for severity, and, Medium or High for priority. The alerts for unix/linux log
    file are severity warning and priority medium.
    In my inbox there are emails for alerts (Warning or Critical for severity, and, Medium or High for priority) except for unix/linux monitoring.
    The question is:
    How to enable email notification for unix/linux log file monitoring?
    Thanks in advance!

    Hello,
    If you go into the "Subscription" in the Notifications section of the Operations Console\Administration, you should be able to see the Description of the subscription criteria.  Could you copy paste that in a reply?
    Thanks,
    Kris
    www.operatingquadrant.com

  • Errors in alert_ORCL.log

    In my alert_ORCL.log I have find strings:
    Errors in file /usr/local/oracle/admin/begemot/udump/ora_12345.trc:
    ORA-07745: exception encountered: core dump ..
    Oracle 8.1.5.0.2,
    kernel 2.2.5-22 RedHat
    May be I need apply any patches?
    null

    Hi,
    I have been having LMS trouble with one RAC setup for a while now and opened several SRs. While I am waiting for a (working) patch, disabling DRM seems to be a workaround that helped. With these two parameters set, I have seen no more LMS crashes
    alter system set "_gc_affinity_time"=0 scope=spfile sid='*';
    alter system set "_gc_undo_affinity"=FALSE scope=spfile sid='*';I think you should bring all instances down (at the same time) before restarting with these parameters.
    All this being said, these are hidden parameters, you should contact oracle support, don't just blindly trust me on this and set these parameters. you are warned.
    Bjoern

  • Check Event Alert ends in error, log file has no error message

    Hi,
    We are upgrading from 11.5.10 to 12.1.3. Check Event Alert ends in error, log file doesn't have any information. This alert is on oe_order_headers_all. Alert working fine in 11i.
    12.1.3
    10g database
    Appreciate any inputs.
    I noticed that Operating Unit parameter is passed as NULL, not sure if this is causing the issue.
    K

    Here is the workflow logfile from today, check event was run multiple times today as part of testing and i believe this log could be for these requests. I am not too sure how to read this....had to remove some lines from the log as it is more than 30000 characters.
    LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsc.Logger.Logger(String, int) : Logging to System.out until necessary parameters are retrieved for Logger to be properly started.
    LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsm.GSMSvcComponentContainer.initializeStateMachine() : BEGIN
    LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsc.SvcComponentContainer.getNewWorkflowContext() : BEGIN
    LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsc.SvcComponentContainer.getNewWorkflowContext() : BEGIN
    LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsc.SvcComponentContainer.loadGlobalParameters() : BEGIN
    LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsm.GSMSvcComponentContainer.loadContainerParameters() : BEGIN
    LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsc.SvcComponentContainer.start() : Successfully retrieved global and container parameters
    LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsc.SvcComponentContainer.validateParameterValues(Properties) : BEGIN
    LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsc.SvcComponentContainer.validateParameterValues(Properties) : ({SVC_COMP_MAX_ERROR_COUNT=10, SVC_COMP_MONITOR_LOOP_SLEEP=60, SVC_CONTAINER_LOOP_SLEEP=10, SVC_CONTAINER_READ_TIMEOUT=10, SVC_COMP_MONITOR_ONDEMAND_FREQ=300, SVC_CONTAINER_LOG_LEVEL=4, SVC_WRITE_DIAG_TO_GSM_LOG=Y})
    LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsc.SvcComponentContainer.start() : Successfully validated container parameters
    LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsm.GSMSvcComponentContainer.loadDetails(Connection) : BEGIN (oracle.jdbc.driver.T4CConnection@8ae45a)
    LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsc.SvcComponentContainer.start() : Successfully retrieved container details
    LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsm.GSMSvcComponentContainer.startLogger() : BEGIN
    LOG_ID_UNKNOWN : oracle.apps.fnd.cp.gsc.SvcComponentContainer.startLogger() : BEGIN [default implementation]
    SVC-GSM-WFMLRSVC-27823-10010 : oracle.apps.fnd.cp.gsc.Logger.Logger(String, int) : Logging to System.out until necessary parameters are retrieved for Logger to be properly started.
    3030 secs]
    [GC 3198K->1790K(4992K), 0.0002970 secs]
    [GC 3198K->1791K(4992K), 0.0002970 secs]
    [GC 3199K->1792K(4992K), 0.0003130 secs]
    [GC 3200K->1794K(4992K), 0.0003090 secs]
    [GC 3202K->1792K(4992K), 0.0003030 secs]
    [GC 3200K->1792K(4992K), 0.0003010 secs]
    [GC 3200K->1793K(4992K), 0.0003040 secs]
    [GC 3201K->1793K(4992K), 0.0003150 secs]
    [GC 3201K->1793K(4992K), 0.0003050 secs]
    [GC 3201K->1792K(4992K), 0.0003120 secs]
    [GC 3200K->1790K(4992K), 0.0002960 secs]
    [GC 3198K->1789K(4992K), 0.0003000 secs]
    [GC 3197K->1789K(4992K), 0.0002980 secs]
    [GC 4629K->3828K(5248K), 0.0015060 secs]
    [Full GC 3828K->3466K(5248K), 0.0243510 secs]
    [GC 5892K->4216K(8468K), 0.0016710 secs]
    [GC 6648K->4971K(8468K), 0.0026010 secs]
    [GC 7403K->5358K(8468K), 0.0036650 secs]
    [GC 7790K->5610K(8468K), 0.0067030 secs]
    [GC 8027K->6335K(8852K), 0.0047390 secs]
    [Full GC 6335K->5444K(8852K), 0.0368670 secs]
    [Aug 5, 2012 4:57:53 AM GMT+00:00]:1344142673430:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[main,5,main]:10.160.68.139:80714:1344142672846:0:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.start()]:Successfully created new component control context
    [Aug 5, 2012 4:57:53 AM GMT+00:00]:1344142673837:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[main,5,main]:10.160.68.139:80714:1344142672846:0:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.startBusinessEventListener()]:Successfully asked for BES control connection to be established (asynchronous)
    [Aug 5, 2012 4:57:55 AM GMT+00:00]:1344142675139:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[main,5,main]:10.160.68.139:80714:1344142672846:0:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.startBusinessEventListener()]:Registered a subscription for oracle.apps.fnd.cp.gsc.SvcComponent.refresh
    [Aug 5, 2012 4:57:55 AM GMT+00:00]:1344142675140:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[main,5,main]:10.160.68.139:80714:1344142672846:0:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.startBusinessEventListener()]:Registered a subscription for oracle.apps.fnd.cp.gsc.SvcComponent.resume
    [Aug 5, 2012 4:57:55 AM GMT+00:00]:1344142675140:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[main,5,main]:10.160.68.139:80714:1344142672846:0:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.startBusinessEventListener()]:Registered a subscription for oracle.apps.fnd.cp.gsc.SvcComponent.start
    [Aug 5, 2012 4:57:55 AM GMT+00:00]:1344142675140:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[main,5,main]:10.160.68.139:80714:1344142672846:0:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.startBusinessEventListener()]:Registered a subscription for oracle.apps.fnd.cp.gsc.SvcComponent.stop
    [Aug 5, 2012 4:57:55 AM GMT+00:00]:1344142675140:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[main,5,main]:10.160.68.139:80714:1344142672846:0:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.startBusinessEventListener()]:Registered a subscription for oracle.apps.fnd.cp.gsc.SvcComponent.suspend
    [Aug 5, 2012 4:57:55 AM GMT+00:00]:1344142675140:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[main,5,main]:10.160.68.139:80714:1344142672846:0:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.startBusinessEventListener()]:Registered a subscription for oracle.apps.fnd.wf.mailer.Mailer.notification.summary
    [Aug 5, 2012 4:57:55 AM GMT+00:00]:1344142675140:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[main,5,main]:10.160.68.139:80714:1344142672846:0:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.startBusinessEventListener()]:Have waited 0 seconds for BES system to establish connection to the control queue. Waiting another 2 seconds
    [GC 9025K->6456K(13172K), 0.0024970 secs]
    [GC 10104K->6700K(13172K), 0.0028340 secs]
    [Aug 5, 2012 4:57:57 AM GMT+00:00]:1344142677143:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[main,5,main]:10.160.68.139:80714:1344142672846:0:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.startBusinessEventListener()]:Waited 2 seconds for BES system to establish connection to the control queue
    [Aug 5, 2012 4:58:07 AM GMT+00:00]:1344142687008:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[main,5,main]:10.160.68.139:80714:1344142672846:0:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.start()]:Successfully started BES listener
    [Aug 5, 2012 4:58:07 AM GMT+00:00]:1344142687165:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[main,5,main]:10.160.68.139:80714:1344142672846:0:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.start()]:Successfully reset component statuses for this container
    [Aug 5, 2012 4:58:07 AM GMT+00:00]:1344142687171:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[main,5,main]:10.160.68.139:80714:1344142672846:0:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.start()]:Successfully updated the container's database status, if any
    [Aug 5, 2012 4:58:07 AM GMT+00:00]:1344142687173:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[main,5,main]:10.160.68.139:80714:1344142672846:0:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.start()]:Successfully named container session (took logical lock)
    [Aug 5, 2012 4:58:07 AM GMT+00:00]:1344142687276:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[main,5,main]:10.160.68.139:80714:1344142672846:0:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.start()]:Successfully started the Component Monitor thread
    [Aug 5, 2012 4:58:07 AM GMT+00:00]:1344142687282:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[main,5,main]:10.160.68.139:80714:1344142672846:0:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.start()]:Successfully started the state machine
    [Aug 5, 2012 4:58:07 AM GMT+00:00]:1344142687285:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[main,5,main]:10.160.68.139:80714:1344142672846:0:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.start()]:Successfully started the container -> SvcComponentContainer{mComponentControlWorkflowContext=[oracle.apps.fnd.wf.apps.WorkflowContext@3a0ab1 $Revision: 120.14.12010000.18 $ extends [oracle.apps.fnd.common.Context@3a0ab1 $Revision: 120.7.12010000.15 $  {sessionId=0x3a0ab1,conn=oracle.jdbc.driver.T4CConnection@1de45e2,state=oracle.apps.fnd.common.StateStack@940f82}] {isDedicated=false}],mComponentMonitor=SvcComponentMonitor{Processor{mThread=Thread[ComponentMonitor,5,main],mCurrentLoopSleep=0,mMinLoopSleep=60,mMaxLoopSleep=0,mReadTimedOutFlag=false,mCurrentErrorCount=0,mMaxErrorCount=-2147483648,mErrorLoopSleep=60,mErrorFlag=false,mControlEvent=noEvent,mStopFlag=false,mSuspendFlag=false,mLastSuspendFlag=false},mCurrentLoopCount=4,mOnDemandLoopCount=5},mStateMachine=[email protected]18,mLogger=Logger{mLog=[$Header: AppsLog.java 120.4.12010000.2 2009/06/17 15:14:37 rsantis ship $ @9564165 {oracle.apps.fnd.profiles.ExtendedProfileStore@1250ff2}],mUniqueId=SVC-GSM-WFMLRSVC-27823,mLevel=4},mParameters={SVC_COMP_MAX_ERROR_COUNT=10, SVC_COMP_MONITOR_LOOP_SLEEP=60, SVC_CONTAINER_LOOP_SLEEP=10, SVC_CONTAINER_READ_TIMEOUT=10, SVC_COMP_MONITOR_ONDEMAND_FREQ=300, SVC_CONTAINER_LOG_LEVEL=4, SVC_WRITE_DIAG_TO_GSM_LOG=Y},mProcessId=27823,mType=GSM,mName=WFMLRSVC,mComponents={},mAutomaticComponentErrorCounts=null,mEventSubscriptions=[oracle.apps.fnd.wf.bes.Subscription@e2433b, oracle.apps.fnd.wf.bes.Subscription@abe654, oracle.apps.fnd.wf.bes.Subscription@19ea173, oracle.apps.fnd.wf.bes.Subscription@179a49f, oracle.apps.fnd.wf.bes.Subscription@1270107, oracle.apps.fnd.wf.bes.Subscription@1b48392]}
    [Aug 5, 2012 4:58:07 AM GMT+00:00]:1344142687284:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[GSMQueueProcessor,5,main]:10.160.68.139:80714:1344142687286:1:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.Processor.run()]:Processor has successfully been initialized. Loop will now start.
    [GC 10319K->8190K(13172K), 0.0032630 secs]
    [Aug 5, 2012 4:58:07 AM GMT+00:00]:1344142687320:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[ComponentMonitor,5,main]:10.160.68.139:80714:1344142687320:2:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentMonitor.performInit()]:Successfully initialized -> SvcComponentMonitor{Processor{mThread=Thread[ComponentMonitor,5,main],mCurrentLoopSleep=0,mMinLoopSleep=60,mMaxLoopSleep=0,mReadTimedOutFlag=false,mCurrentErrorCount=0,mMaxErrorCount=-2147483648,mErrorLoopSleep=60,mErrorFlag=false,mControlEvent=noEvent,mStopFlag=false,mSuspendFlag=false,mLastSuspendFlag=false},mCurrentLoopCount=4,mOnDemandLoopCount=5}
    [Aug 5, 2012 4:58:07 AM GMT+00:00]:1344142687320:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[ComponentMonitor,5,main]:10.160.68.139:80714:1344142687320:2:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.Processor.run()]:Processor has successfully been initialized. Loop will now start.
    [Aug 5, 2012 4:58:07 AM GMT+00:00]:1344142687454:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[ComponentMonitor,5,main]:10.160.68.139:80714:1344142687320:2:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentMonitor.startAutomaticComponents()]:Starting automatic component 10010
    [Aug 5, 2012 4:58:16 AM GMT+00:00]:1344142696950:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[BES Dispatch Thread,5,main]:10.160.68.139:80714:1344142696950:3:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.onBusinessEvent(BusinessEvent)]:(BusinessEvent{name=oracle.apps.fnd.cp.gsc.SvcComponent.start, key=SVC:05-AUG-2012, priority=50, correlationId=null, sendDate=Sun Aug 05 04:58:08 GMT+00:00 2012, receiveDate=null, From Agent:  , To Agent:  , Last Subscription=  , Error Message=null, Error Stack=null, CONTAINER_TYPE=GSM, CONTAINER_PROCESS_ID=27819, COMPONENT_ID=10004, BES_PAYLOAD_OBJECT=false, [email protected]})
    [Aug 5, 2012 4:58:17 AM GMT+00:00]:1344142697016:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[BES Dispatch Thread,5,main]:10.160.68.139:80714:1344142697016:4:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.onBusinessEvent(BusinessEvent)]:(BusinessEvent{name=oracle.apps.fnd.cp.gsc.SvcComponent.start, key=SVC:05-AUG-2012, priority=50, correlationId=null, sendDate=Sun Aug 05 04:58:08 GMT+00:00 2012, receiveDate=null, From Agent:  , To Agent:  , Last Subscription=  , Error Message=null, Error Stack=null, CONTAINER_TYPE=GSM, CONTAINER_PROCESS_ID=27823, COMPONENT_ID=10010, BES_PAYLOAD_OBJECT=false, [email protected]})
    [Aug 5, 2012 4:58:17 AM GMT+00:00]:1344142697031:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[BES Dispatch Thread,5,main]:10.160.68.139:80714:1344142697016:4:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.handleComponentEvent(int, String, String)]:Successfully retrieved component details from the database
    [GC 11838K->8860K(13172K), 0.0054540 secs]
    [GC 12508K->9106K(13172K), 0.0025580 secs]
    [GC 12754K->9621K(13432K), 0.0020510 secs]
    [Full GC 9621K->8781K(13432K), 0.0354810 secs]
    [Aug 5, 2012 4:58:36 AM GMT+00:00]:1344142716097:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[BES Dispatch Thread,5,main]:10.160.68.139:80714:1344142697016:4:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.onBusinessEvent(BusinessEvent)]:Successfully handled component event, oracle.apps.fnd.cp.gsc.SvcComponent.start, for component 10010
    [Aug 5, 2012 4:58:36 AM GMT+00:00]:1344142716098:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[BES Dispatch Thread,5,main]:10.160.68.139:80714:1344142716098:5:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.onBusinessEvent(BusinessEvent)]:(BusinessEvent{name=oracle.apps.fnd.cp.gsc.SvcComponent.start, key=SVC:05-AUG-2012, priority=50, correlationId=null, sendDate=Sun Aug 05 04:58:10 GMT+00:00 2012, receiveDate=null, From Agent:  , To Agent:  , Last Subscription=  , Error Message=null, Error Stack=null, CONTAINER_TYPE=GSM, CONTAINER_PROCESS_ID=27819, COMPONENT_ID=10011, BES_PAYLOAD_OBJECT=false, [email protected]})
    [Aug 5, 2012 4:58:36 AM GMT+00:00]:1344142716098:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[BES Dispatch Thread,5,main]:10.160.68.139:80714:1344142716098:6:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.onBusinessEvent(BusinessEvent)]:(BusinessEvent{name=oracle.apps.fnd.cp.gsc.SvcComponent.start, key=SVC:05-AUG-2012, priority=50, correlationId=null, sendDate=Sun Aug 05 04:58:10 GMT+00:00 2012, receiveDate=null, From Agent:  , To Agent:  , Last Subscription=  , Error Message=null, Error Stack=null, CONTAINER_TYPE=GSM, CONTAINER_PROCESS_ID=27819, COMPONENT_ID=10009, BES_PAYLOAD_OBJECT=false, [email protected]})
    [Aug 5, 2012 4:58:36 AM GMT+00:00]:1344142716098:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[BES Dispatch Thread,5,main]:10.160.68.139:80714:1344142716098:7:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.onBusinessEvent(BusinessEvent)]:(BusinessEvent{name=oracle.apps.fnd.cp.gsc.SvcComponent.start, key=SVC:05-AUG-2012, priority=50, correlationId=null, sendDate=Sun Aug 05 04:58:10 GMT+00:00 2012, receiveDate=null, From Agent:  , To Agent:  , Last Subscription=  , Error Message=null, Error Stack=null, CONTAINER_TYPE=GSM, CONTAINER_PROCESS_ID=27819, COMPONENT_ID=10008, BES_PAYLOAD_OBJECT=false, [email protected]})
    [Aug 5, 2012 4:58:36 AM GMT+00:00]:1344142716099:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[BES Dispatch Thread,5,main]:10.160.68.139:80714:1344142716099:8:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.onBusinessEvent(BusinessEvent)]:(BusinessEvent{name=oracle.apps.fnd.cp.gsc.SvcComponent.start, key=SVC:05-AUG-2012, priority=50, correlationId=null, sendDate=Sun Aug 05 04:58:10 GMT+00:00 2012, receiveDate=null, From Agent:  , To Agent:  , Last Subscription=  , Error Message=null, Error Stack=null, CONTAINER_TYPE=GSM, CONTAINER_PROCESS_ID=27819, COMPONENT_ID=10007, BES_PAYLOAD_OBJECT=false, [email protected]})
    [Aug 5, 2012 4:58:36 AM GMT+00:00]:1344142716099:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[BES Dispatch Thread,5,main]:10.160.68.139:80714:1344142716099:9:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.onBusinessEvent(BusinessEvent)]:(BusinessEvent{name=oracle.apps.fnd.cp.gsc.SvcComponent.start, key=SVC:05-AUG-2012, priority=50, correlationId=null, sendDate=Sun Aug 05 04:58:10 GMT+00:00 2012, receiveDate=null, From Agent:  , To Agent:  , Last Subscription=  , Error Message=null, Error Stack=null, CONTAINER_TYPE=GSM, CONTAINER_PROCESS_ID=27819, COMPONENT_ID=10006, BES_PAYLOAD_OBJECT=false, [email protected]})
    [Aug 5, 2012 4:58:36 AM GMT+00:00]:1344142716099:-1:-1:ohioitp001:10.160.68.139:-1:-1:1:20420:SYSADMIN(0):-1:Thread[BES Dispatch Thread,5,main]:10.160.68.139:80714:1344142716099:10:EXCEPTION:[SVC-GSM-WFMLRSVC-27823 : oracle.apps.fnd.cp.gsc.SvcComponentContainer.onBusinessEvent(BusinessEvent)]:(BusinessEvent{name=oracle.apps.fnd.cp.gsc.SvcComponent.start, key=SVC:05-AUG-2012, priority=50, correlationId=null, sendDate=Sun Aug 05 04:58:10 GMT+00:00 2012, receiveDate=null, From Agent:  , To Agent:  , Last Subscription=  , Error Message=null, Error Stack=null, CONTAINER_TYPE=GSM, CONTAINER_PROCESS_ID=27819, COMPONENT_ID=10005, BES_PAYLOAD_OBJECT=false, [email protected]})
    [GC 14733K->11747K(21292K), 0.0039530 secs]
    [GC 17672K->13394K(21292K), 0.0059880 secs]
    [GC 19340K->14241K(21292K), 0.0027020 secs]
    [GC 20193K->14421K(21292K), 0.0029050 secs]
    [GC 20303K->15379K(21420K), 0.0014680 secs]
    [Full GC[Unloading class sun.reflect.GeneratedMethodAccessor1]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor4]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor15]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor10]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor2]
    [Unloading class sun.reflect.GeneratedMethodAccessor2]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor3]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor1]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor14]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor16]
    15379K->10614K(21420K), 0.0507280 secs]
    [GC 17822K->11024K(25756K), 0.0011190 secs]
    [GC 18256K->10845K(25756K), 0.0009730 secs]
    [GC 18003K->10806K(25756K), 0.0006760 secs]
    [GC 17969K->10857K(25756K), 0.0010200 secs]
    [GC 18053K->10940K(25756K), 0.0007280 secs]
    [GC 18172K->10834K(25756K), 0.0010650 secs]
    [GC 18049K->11012K(25756K), 0.0007780 secs]
    [GC 18244K->11037K(25756K), 0.0008230 secs]
    [GC 18173K->10927K(25756K), 0.0007040 secs]
    [GC 18116K->10915K(25756K), 0.0006930 secs]
    [GC 18142K->11114K(25756K), 0.0011650 secs]
    [GC 18346K->10920K(25756K), 0.0008180 secs]
    [GC 18152K->10908K(25756K), 0.0007900 secs]
    [GC 18134K->11088K(25756K), 0.0007210 secs]
    [GC 18242K->11023K(25756K), 0.0011560 secs]
    [GC 18235K->11131K(25756K), 0.0010920 secs]
    [GC 18342K->11105K(25756K), 0.0007430 secs]
    [GC 18305K->11145K(25756K), 0.0010030 secs]
    [GC 18302K->11045K(25756K), 0.0010750 secs]
    [GC 18238K->11020K(25756K), 0.0009560 secs]
    [GC 18252K->11136K(25756K), 0.0008380 secs]
    [GC 18366K->10956K(25756K), 0.0014370 secs]
    [GC 18098K->11075K(25756K), 0.0009240 secs]
    [GC 18266K->10979K(25756K), 0.0009150 secs]
    [GC 18171K->11088K(25756K), 0.0009690 secs]
    [GC 18310K->11196K(25756K), 0.0009630 secs]
    [GC 18428K->11171K(25756K), 0.0013610 secs]
    [GC 18403K->11005K(25756K), 0.0007650 secs]
    [GC 18223K->11101K(25756K), 0.0006870 secs]

  • Alert to one user logged on at 2 computers

    Hello all,
    I've created a query and an alert which will be sent to myself if there's any result from the query.
    If I will log on at 2 computers, will the alert also appears at 2 computers at the customized day and time or at the one which was started at first??
    I've tried ofcourse, but the alert will only appears at 1 computer, which was started as second.
    Please advise.
    Best regards,
    Carl Verhagen

    Hi Suda,
    Thanks for your answer, but I only receive the alert at the last logged on computer (to SAP B1). That's what I saw yesterday. See also Gordon's answer.
    However that's also something I'm not sure off as of now.
    We just logged on (to SAP B1) the 2nd computer but the alert appears at the first logged on computer?
    Strange behaviour and not reliable.
    I think we just have to watch both computers if an alert appears. 
    Best regards,
    Carl

  • Increasing verbosity level of logs alert_orcl.log etc..

    Hi!
    How can I increase the verbosity of the log files in ../admin/orcl/*/
    especially alert_orcl.log and all the trc files in bdump subdirectory ?
    I tried to change the parameter "event" in init.ora without success.
    Thanks for you help.
    F.

    Hi Rattus,
    generally, the event parameters relate to specific events, not the database as a whole. Are
    you having a particular issue that you need help with?Actually I'm using a virtualization technology to checkpoint and restart oracle server (simple installation on a single node, with the default database).
    Everything's OK till the checkpoint, including the latter, but at restart it fails (the process tree is being rebuild but when the processes restart, they almost immediatly die with SIGSEGV, leaving core file), and something might badly be restored.
    I'm trying to find according to oracle what is bad, ressources corrupted (shm, memory etc), timeouts that occurs, specific checking made that fails etc...
    The logs at restart, at failure time are the following (extract of alert_orcl.log):
    Wed Dec 5 11:29:12 2007
    PSP0: terminating instance due to error 472
    Instance terminated by PSP0, pid = 434281
    Wed Dec 5 11:29:12 2007
    Errors in file /opt/qa/qa1/s390x/oracle/product/10.2.0/db_1/admin/orcl/bdump/orcl_j000_569482.trc:
    ORA-00472: PMON process terminated with error
    Wed Dec 5 11:29:12 2007
    Errors in file /opt/qa/qa1/s390x/oracle/product/10.2.0/db_1/admin/orcl/bdump/orcl_reco_483445.trc:
    ORA-00472: PMON process terminated with error
    Wed Dec 5 11:29:12 2007
    Errors in file /opt/qa/qa1/s390x/oracle/product/10.2.0/db_1/admin/orcl/bdump/orcl_q001_856272.trc:
    ORA-00472: PMON process terminated with error
    extract of orcl_j000_569482.trc :
    error 472 in job queue process
    ORA-00472: PMON process terminated with error
    I would like to know what's wrong exactly, and that's why I would like
    to increase the verbosity level of these logs :-/
    If so, I'd recommed that you post in the database forum.Let me know if so :)
    Thanks,
    F.

  • Configure CCMS alert to Analyze Application log

    Hi ,
    Please provide the prodecure to configure CCMS alert for Applications logs from SLG1 tcode.
    If any error log(prefarably Important logs ) is created then a alert should be triggered .
    Background : We are using Solution Manager 7.0 as Central monitor system for Satellite systems of verions ECC6.0.
    Thanks & Regards
    ganesh

    this answer is no longer needed

  • Security Audit Log SM19 and Log Management external tool

    Hi all,
    we are connecting a SAP ECC system with a third part product for log management.
    Our SAP system is composed by many application servers.
    We have connected the external tool with the SAP central system.
    The external product gathers data from SAP Security Audit Log (SM19/SM20).
    The problem is that we see, in the external tool,  only the data available in the central system.
    The mandatory parameters have been activated and the system has been restarted.
    The strategy of SAP Security Audit Log is to create many audit log file for each application server. Probably, only when SM20 is started, all audit files from all application servers are read and collected.
    In our scenario, we do not use SM20 since we want read the collected data in the external tool.
    Is there a job to be scheduled (or something else) in order to have all Security Audit Log available (from all application servers) in the central instance ?
    Thanks in advance.
    Andrea Cavalleri

    I am always amazed at these questions...
    For one, SAP provides an example report ( RSAU_READ_AUDITLOG_EXTERNAL ) to use BAPIs for alerts from the audit log yet 3rd party solutions seem to be alergic to using APIs for some reason.
    However, mainly I do not understand why people don't use the CCMS (tcode RZ20) security templates and monitor the log centrally from SolMan. You can do a million cool things in SolMan... but no...
    Cheers,
    Julius

  • Adobe Flash can be installed, but must be install EVERY time I log out and log back in. Why doesn't it stay? How can I fix this? (I have Firefox 6.0.2 and Flash 10.3)

    I have searched through the FAQs and find stuff on "crashing". I have not had any trouble with flash crashing, but I can't keep it installed.
    If I install flash, then it stays as long as I am logged in, even if I close firefox. Once I log out and log back in, I lose Flash and have to re-install it.

    I was having the same issue with installing Flash player 10.3.183.10 in both Firefox 6.0.2 and Explorer 9 -- the Task Manager would show the installer running as a process, but it would never actually install anything. It would just sit there until I killed it or rebooted.
    It seems that there are multiple versions of the separate installers needed. The installer that worked for me in Firefox was
    install_flash_player_10.exe -- a 3,017KB file
    and for Explorer, it was:
    install_flash_player_10_active_x.exe -- a 3,054KB file.
    Neither of those files was sent by the main updater page, nor did that page offer the 239KB uninstall_flash_player.exe, which is needed to uninstall the previous Flash version before one can even begin to try to update it. I had to pound through the messages in the forums to find links to those "full" installers.
    It is working now in both browsers, but jeepers creepers, it shouldn't take all day to find the installers for something that gets updated as often as Flash does.

  • OSB logging - Process writes logs in both osb_server1.out and log file ..?

    Hello,
    I have few OSB proxy service and we have configured few log operations for logging but while testing, I noticed logs are getting written in both osb_server1.out and osb_server1.log file. I dont want to write logs in osb_server1.out file.
    I am running my weblogic server in development mode.
    Could someone please advice me whats wrong I am doing here.

    Hello,
    I have few OSB proxy service and we have configured few log operations for logging but while testing, I noticed logs are getting written in both osb_server1.out and osb_server1.log file. I dont want to write logs in osb_server1.out file.
    I am running my weblogic server in development mode.
    Could someone please advice me whats wrong I am doing here.

  • [Solved] Pacman.log no longer logging maybe systemd

    Hi, I upgraded a couple of days ago on the 11th to systemd system, I am using 86_64 awesome DE, I ran Syu yesterday and this morning I found mplayer was acting poorly so I went to check pacman.log to see what was updated. Pacman.log hadn't logged since the 11th when I upgraded, although I would like to figure out mplayer, I am more interested in the log files. I also found that my boot log file is not recording boot information from the same time although the errors.log has information in it.
    thanks in advance for any help you may give.
    --jerry
    Last edited by jk121960 (2012-11-14 21:15:45)

    bernarcher wrote:
    To be more precise, did you follow this: Journald in conjunction with syslog
    pacman.log is working here.
    Yes and here is the status
    syslog-ng.service - System Logger Daemon
    Loaded: loaded (/usr/lib/systemd/system/syslog-ng.service; enabled)
    Active: active (running) since Wed, 2012-11-14 00:58:57 CST; 14h ago
    Docs: man:syslog-ng(8)
    Main PID: 591 (syslog-ng)
    CGroup: name=systemd:/system/syslog-ng.service
    └ 591 /usr/sbin/syslog-ng -F
    thanks for your help
    --jerry

  • Windows 7 takes 15 mins to log in and log off - School Enviroment

    Hi All,
    We're getting a very weird issue at present, our environment consists of 20
    students with Windows 7 SP1. They login with roaming profiles. We've noticed
    that when they login it takes up to 15 mins and logging off/shutting down takes
    about 15 mins also. We have to re-image the PC's to get them working back to
    normal however the problem just comes back!
    What we've done so far,
    Checked cables - all is ok
    Used the Verbrose regedit on start-up to find that we needed to install
    this hotfix from Microsoft (KB2537556) (worked for a week but then back to
    normal, only for logging in not logging off)
    Tried some GP changes
    Local GP change - time waiting for network reduced to 15 secs then to 0 - no
    change
    Local GP change to remove all desktop items to see if that was causing
    changes - no change
    Only affects Student PC's which are used by all students
    Any help would be great :)
    MR

    Hi,
    First please check to see how big the student’s profiles are, what is the result if we compare it with teacher’s?
    You can also enable boot logging in process monitor to find the cause of the slow logon, please refer to this blog.
    The Case of the Veeerrry Slow Logons
    http://blogs.technet.com/b/markrussinovich/archive/2012/07/02/3506849.aspx
    And check whether you have Enabled “Delete cached copies of roaming profiles” policy setting, enable this policy will delay logoff as some yet-to-be-identified component in the OS is triggering Windows desktop search to cache settings on behalf of each locally
    cached profile at logoff.
    Regards
    Yolanda
    TechNet Community Support

  • After updating when i close itunes it wont open back up until i log off and log back on or reboot

    After updating to latest software when i close itunes it wont open back up until i log off and log back on or reboot. Now I have removed itunes and reinstalled it but same problem

    jordN wrote:
    This only started happening after I upgraded from Windows 8.1 to Windows 10, I don't have a clue why it does it, but if I close the screen on my laptop and open it, the screen doesn't come back on it just stays off but the power light button comes on and the WiFi signal button is on but it is red as if the wifi is turned off, is anyone else having this problem or does anyone know how to fix it? I have to manually hold down the power button everytime I close my laptop to turn it off and then back on and once it is on it works perfectly, but I don't like holding the power button down for obvious reasons. Thank you.Go back to Windows 10, seems HP do not care about releasing up to date drivers for Windows 10, this is despite the problem you report also happening during BETA Testing of Windows 10 over TWELVE MONTHS AGO! It is only now HP are bothering to advise people not to upgrade, but yet they clearly won't reply in this topic, which is more or less about your problem from many different users! http://h30434.www3.hp.com/t5/Notebook-Operating-Systems-and-Software/Windows-10-Laptop-won-t-go-into-sleep-mode/m-p/5181173#M304826

  • Output log to application log in application server

    Hi Guys,
    I am pretty new on J2EE, I created a web application and deployed it on to the oracle application server. I found out that I can view the log file(application.log) for that particular web application on the application control page. What I want to achieve is outputing some custom log on to the same built-in log file. Could anyone please show me how to do that?
    Thanks advance
    James

    Hi, I figured out that ADF is a oracle's implementation of JSF, I tried above approach it did log to a log.xml in the particular folder. However, I would like to output to a log file that you can actually view in the Enterprise Manager Console...
    Into the log below:
    Log Text
    08/04/16 10:13:33.431 10.1.3.3.0 Started
    08/04/16 10:13:36.486 webapp: 10.1.3.3.0 Started
    (End of Log File) = entries updated since last refresh
    Is it possible?
    Cheers!
    James

  • Lightroom CC not showing up in my creative cloud after repeated log out and log in's

    tried updating to the latest lightroom, but creative cloud not showing Lightroom CC even after repeated log outs and log back in's. Showed up first time on another machine of mine but not my main desktop machine.

    Hi Sandeep,
    I just signed up for a 30 day trial and I'm really excited to use the software for movie editing, however I just saw this post after I was trying to use Premiere Pro and sadly I don't have a machine with 64 Bit OS. I was just seeing if there is any way I can cancel my free trial and then start it back up after I get a new computer. I'm really excited about using Premier Pro but want to make sure I can try it out with a film project before purchasing and I don't know how long it will take to get a new computer.
    thanks!

Maybe you are looking for

  • Lyncdiscover reports HTTP 500 Internal Server Error for external users

    Hello, I have a problem providing lyncdiscover information for external Lync users. The same address works internal (prompts for file download) so I believe the problem is UAG/TMG providing the site which is not my cup of tea. I have a working extern

  • ALV Grid user command handling

    I am handling user command event of class cl_gui_alv_grid. In this , on click of a button , a pop up for selection criterion comes after which I have to append some data on alv. But I want to append this data only on frontend not on global internal t

  • Firefox not working with gmail

    i tried to load gmail, but the standard view does not load, only the basic html version. whereas it loads perfectly internet explorer 9 or firefox v4. tried reinstalling, clearing cookies etc.. nothing changed. even tried "network.http.spdy.enabled"

  • Can't use accent marks

    I'm sure this has been asked before, but I can find no threads. Accent marks when published get transformed to something else. How can I do this on the PC ? I don't see any work around... anyone?

  • OWA won't connect to 2010 accounts from 2013

    Coexistence scenario with Exchange 2010 and Exchange 2013 DAG (2CAS + 2MBX) Mailboxes hosted on 2013 are no problem... but mailboxes which are still on 2010 receive an HTTP 500 error immediately after logging into OWA on the 2013 CAS server. Authenti