数据库归档模式与非归档模式下各种加载数据方式对redo的影响

redo
重做日志文件(redo log file)对Oracle数据库来说至关重要,它们是数据库的事务日志。Oracle维护着两类重做日志文件:
在线(online)重做日志文件和归档(archived)重做日志文件。这两类重做日志文件都用于恢复;其主要目的是,
万一实例失败或介质失败,它们就能派上用场。
如果数据库所在主机掉电,导致实例失败,Oracle会使用在线重做日志将系统恰好恢复到掉电之前的那个时间点。
如果磁盘驱动器出现故障(这是一个介质失败),Oracle会使用归档重做日志以及在线重做日志将该驱动器上的
数据备份恢复到适当的时间点。
归档重做日志文件实际上就是已填满的"旧"在线重做日志文件的副本。系统将日志文件填满时,
ARCH进程会在另一个位置建立在线重做日志文件的一个副本,也可以在本地和远程位置上建立多个另外的副本.
如果由于磁盘驱动器损坏或者其他物理故障而导致失败,就会用这些归档重做日志文件来执行介质恢复.
Oracle拿到这些归档重做日志文件,并把它们应用于数据文件的备份,使这些数据文件能与数据库的其余部分保持一至.
归档重做日志文件是数据库的事务历史。
测量redo
redo管理是数据库中的一个串行点.任何Oracle实例都有一个LGWR,最终所有事务都会归于LGWR,要求这个进程管理它们的redo,
并COMMIT其事务,LGWR工作越忙,系统就会越慢.通过查看一个操作会生成多少redo,并对一个问题的多种解决方法进行测试,
可以从中找出最佳的方法。
与redo有关的视图
V$MYSTAT,其中有会话的提交信息
V$STATNAME,这个视图能告诉我们V$MYSTAT中的每一行表示什么(查看的统计名)。
查询redo大小的语句
SELECT a.NAME,
b.VALUE cur_size_byte,
round(b.VALUE / 1024, 3) || 'KB' cur_size_kb
FROM v$statname a, v$mystat b
WHERE a.statistic# = b.statistic#
AND lower(a.NAME) LIKE '%' || lower('redo size') || '%'
数据库归档模式
数据库归档用来保存redo的日志文件副本,一般安装时默认未开启数据库的归档模式。
在NOARCHIVELOG模式的数据库中,除了数据字典的修改外,CREATE TABLE不会记录日志.
如果你想在NOARCHIVELOG模式的数据库上看到差别,可以把对表T的DROP TABLE和CREATE TABLE换成DROP INDEX和CREATE INDEX。
默认情况下,不论数据库以何种模式运行,这些操作都会生成日志。
因为不同的模式可能导致不同的行为。你的生产系统可能采用ARCHIVELOG模式运行.
倘若你执行的大量操作在ARCHIVELOG模式下会生成redo,而在NOARCHIVELOG模式下不会生成redo,
你肯定想在测试时就发现这一点,而不要等到系统交付给用户时才暴露出来!
查看是否归档
查看数据库是否开启归档
select name,log_mode from v$database;
启用归档
startup mount
alter database archivelog;
alter database open;
禁止归档
shutdown immediate
startup mount
alter database noarchivelog
alter database open
force logging(强制日志)模式:
如果数据库强制日志模式开启后,则Oracle无论什么操作都进行redo的写入。
查看强制日志模式
通过
select force_logging from v$database
可以看到当前数据库是否开启了强制日志模式状态
开启强制日志模式
如果未开启数据库强制日志模式(默认未开启),则可以通过
alter database force logging开启,之后Oracle无论什么操作都进行redo的写入,不依赖于数据库的归档模式等其他因素.
关闭强制日志模式
如果已经开启了数据库强制日志模式,则可以通过
alter database no force logging关闭强制日志模式。
使数据库恢复先前的设置,数据库是否写入redo由数据库的归档模式等其他因素决定
disable_logging
那么在Oracle内部还存在一个内部参数:_disable_logging 默认是false
通过更改为true可以让Oracle在修改表中的记录的时候完全不记录redo,这个参数要甚用,平时,我们只作为性能测试用。
查看:show parameter disa /disable/_disable_logging
开启:alter system set "_disable_logging"=true scope=both;
禁用:alter system set "_disable_logging"=false
表的归档模式
查看表的logging模式
查看表是否是logging状态用如下SQL:
select table_name,logging from dba_tables where table_name='tablename';
修改表的logging模式
修改表的logging状态sql:
alter table table_name nologging/logging
减少redo写入
本节所讲的都是当数据库未开启强制日志模式时的操作。
对象的操作在执行时会产生重做日志,采用某种方式,生成的redo会比平常(即不使用NOLOGGING子句时)少得多.
注意,这里说"redo"少得多,而不是"完全没有redo".所有操作都会生成一些redo,不论数据库的日志模式是什么,
所有数据字典操作都会计入日志。
如何减少redo
create table时减少redo的方法
创建表时crate table as加入nolongging选项减少redo,格式如下
create table [table_name] nologging as [select表达式]。
insert into减少redo的方法
insert 大批量数据时加入/*+append */选项减少redo写入,格式如下
insert /*+append */ into   [table_name] [select表达式]
数据库归档模式下生成redo规则
create table时nologging效果
归档模式下创建的表,默认为logging模式。
创建表时crate table as加入nolongging选项减少redo写入明显
验证
下面比较以下两种create table as时产生的redo size量。
SELECT a.NAME,
b.VALUE cur_size_byte,
round(b.VALUE / 1024, 3) || 'KB' cur_size_kb
FROM v$statname a, v$mystat b
WHERE a.statistic# = b.statistic#
AND lower(a.NAME) LIKE '%' || lower('redo size') || '%'
查询当前的重做日志大小记录下来
create table test_1 as select * from test;
SELECT a.NAME,
b.VALUE cur_size_byte,
round(b.VALUE / 1024, 3) || 'KB' cur_size_kb
FROM v$statname a, v$mystat b
WHERE a.statistic# = b.statistic#
AND lower(a.NAME) LIKE '%' || lower('redo size') || '%'
查询当前的重做日志大小减去前面记录下来的值计算刚才这个操作产生的redo大小标记为redo_1
SELECT a.NAME,
b.VALUE cur_size_byte,
round(b.VALUE / 1024, 3) || 'KB' cur_size_kb
FROM v$statname a, v$mystat b
WHERE a.statistic# = b.statistic#
AND lower(a.NAME) LIKE '%' || lower('redo size') || '%'
查询当前的重做日志大小记录下来
create table test_2 nologging as select * from test;
SELECT a.NAME,
b.VALUE cur_size_byte,
round(b.VALUE / 1024, 3) || 'KB' cur_size_kb
FROM v$statname a, v$mystat b
WHERE a.statistic# = b.statistic#
AND lower(a.NAME) LIKE '%' || lower('redo size') || '%'
查询当前的重做日志大小减去前面记录下来的值计算刚才这个操作产生的redo大小标记为redo_2
比较redo_1和redo_2的大小就知道crate table as加入nolongging或不加nologging选项的区别了
insert into时加入append效果
表模式logging
当表模式为logging状态时,无论是append模式还是no append模式,redo都会生成,即加入append选项无法生效。
验证
下面比较以下两种insert时产生的redo size量,可以看出redo量是差不多的。
计算重做大小的方法与上面的一样就不说了
1、insert /*+append */ into test_1 select * from test;
commit;
2、insert into test_1 select * from test;
commit;
表模式nologging
当表模式为nologging状态时,只有加入append模式会明显减少生成redo。
验证
1、insert /*+append */ into test_1 select * from test;
commit;
2、insert into test_1 select * from test;
commit;
数据库非归档模式生成redo规则
create table 使用nologging对产生redo的影响
非归档模式下创建的表,默认为nologging模式。
在NOARCHIVELOG模式的数据库中,除了数据字典的修改外,CREATE TABLE不会记录日志。
因此创建表时(crate table as)加入nologging选项减少redo写入不明显,即nologging选项加不加都差不多
验证
下面比较以下两种create table as时产生的redo size量。
create table test_1 as select * from test;
create table test_2 nologging as select * from test;
insert into时append效果
表模式logging
当表模式为logging状态时,加入append模式明显减少生成redo,而no append模式下不会减少生成。
验证
insert /*+append */ into test_1 select * from test;
commit;
insert into test_1 select * from test;
commit;
表模式nologging
当表模式为nologging状态时,append的模式会减少生成redo,而no append模式不会减少生成。
验证
insert /*+append */ into test_1 select * from test;
commit;
insert into test_1 select * from test;
commit;

Good Post! 代码注意用code模式,
如何使用code模式
请参考如何在OTN中文技术论坛提一个问题?

Similar Messages

  • How do I manually archive 1 redo log at a time?

    The database is configured in archive mode, but automatic archiving is turned off.
    For both Oracle 901 and 920 on Windows, when I try to manually archive a single redo log, the database
    archives as many logs as it can up to the log just before the current log:
    For example:
    SQL> select * from v$log order by sequence#;
    GROUP# THREAD# SEQUENCE# BYTES MEMBERS ARC STATUS FIRST_CHANGE# FIRST_TIM
    1 1 14 104857600 1 NO INACTIVE 424246 19-JAN-05
    2 1 15 104857600 1 NO INACTIVE 425087 28-MAR-05
    3 1 16 104857600 1 NO INACTIVE 425088 28-MAR-05
    4 1 17 512000 1 NO INACTIVE 425092 28-MAR-05
    5 1 18 512000 1 NO INACTIVE 425100 28-MAR-05
    6 1 19 512000 1 NO CURRENT 425102 28-MAR-05
    6 rows selected.
    SQL> alter system archive log next;
    System altered.
    SQL> select * from v$log order by sequence#;
    GROUP# THREAD# SEQUENCE# BYTES MEMBERS ARC STATUS FIRST_CHANGE# FIRST_TIM
    1 1 14 104857600 1 YES INACTIVE 424246 19-JAN-05
    2 1 15 104857600 1 YES INACTIVE 425087 28-MAR-05
    3 1 16 104857600 1 YES INACTIVE 425088 28-MAR-05
    4 1 17 512000 1 YES INACTIVE 425092 28-MAR-05
    5 1 18 512000 1 NO INACTIVE 425100 28-MAR-05
    6 1 19 512000 1 NO CURRENT 425102 28-MAR-05
    See - instead of only 1 log being archive, 4 of them were. Oracle behaves the same way if I use the "sequence" option:
    SQL> select * from v$log order by sequence#;
    GROUP# THREAD# SEQUENCE# BYTES MEMBERS ARC STATUS FIRST_CHANGE# FIRST_TIM
    1 1 14 104857600 1 NO INACTIVE 424246 19-JAN-05
    2 1 15 104857600 1 NO INACTIVE 425087 28-MAR-05
    3 1 16 104857600 1 NO INACTIVE 425088 28-MAR-05
    4 1 17 512000 1 NO INACTIVE 425092 28-MAR-05
    5 1 18 512000 1 NO INACTIVE 425100 28-MAR-05
    6 1 19 512000 1 NO CURRENT 425102 28-MAR-05
    6 rows selected.
    SQL> alter system archive log next;
    System altered.
    SQL> select * from v$log order by sequence#;
    GROUP# THREAD# SEQUENCE# BYTES MEMBERS ARC STATUS FIRST_CHANGE# FIRST_TIM
    1 1 14 104857600 1 YES INACTIVE 424246 19-JAN-05
    2 1 15 104857600 1 YES INACTIVE 425087 28-MAR-05
    3 1 16 104857600 1 YES INACTIVE 425088 28-MAR-05
    4 1 17 512000 1 YES INACTIVE 425092 28-MAR-05
    5 1 18 512000 1 NO INACTIVE 425100 28-MAR-05
    6 1 19 512000 1 NO CURRENT 425102 28-MAR-05
    Is there some default system configuration property telling Oracle to archive as many logs as it can?
    Thanks,
    DGR

    Thanks Yoann (and Syed Jaffar Jaffar Hussain too),
    but I don't have a problem finding the group to archive or executing the alter system archive log command.
    My problem is that Oracle doesn't work as I expect it.
    This comes from the Oracle 9.2 online doc:
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96540/statements_23a.htm#2053642
    "Specify SEQUENCE to manually archive the online redo log file group identified by the log sequence number integer in the specified thread."
    This implies that Oracle will only archive the log group identified by the log sequence number I specify in the alter system archive log sequence statement. However, Oracle is archiving almost all of the log groups (see my first post for an example).
    This appears to be a bug, unless there is some other system parameter that is configured (by default) to allow Oracle to archive as many log groups as possible.
    As to the reason why - it is an application requirement. The Oracle db must be in archive mode, automatic archiving must be disabled and the application must control online redo log archiving.
    DGR

  • Select from .. as of - using archived redo logs - 10g

    Hi,
    I was under the impression I could issue a "Select from .. as of" statement back in time if I have the archived redo logs.
    I've been searching for a while and cant find an answer.
    My undo_management=AUTO, database is 10.2.0.1, the retention is the default of 900 seconds as I've never changed it.
    I want to query a table as of 24 hours ago so I have all the archived redo logs from the last 48 hours in the correct directory
    When is issue the following query
    select * from supplier_codes AS OF TIMESTAMP
    TO_TIMESTAMP('2009-08-11 10:01:00', 'YYYY-MM-DD HH24:MI:SS')
    I get a snapshot to old ORA-01555 error. I guess that is because my retention is only 900 seconds but I thought the database should query the archive redo logs or have I got that totally wrong?!
    My undo tablespace is set to AUTOEXTEND ON and MAXSIZE UNLIMITED so there should be no space issues
    Any help would be greatly appreciated!
    Thanks
    Robert

    If you want to go back 24 hours, you need to undo the changes...
    See e.g. the app dev guide - fundamentals, chapter on Flashback features: [doc search|http://www.oracle.com/pls/db102/ranked?word=flashback&remark=federated_search].

  • Airport Utility no longer sees Airport Extreme and I think I need to redo my entire network - can someone help?

    I just purchased this new Airport Extreme after my older Airport went down.  This Airport Extreme at times is super fast, but it gives me more headaches than the older version because it seems to drop its signal too often.  Last week I was able to see my Airport Extreme in my Airport Utility and was able to configure it - now Airport Utility can't find any Airport Extreme, although, it shows that I have an internet connection.  I was hoping that someone who knew how to do a nice easy network set-up could help me start from scratch so this is set up right.  As of now, our home uses the wi-fi for 2 Wii consoles, a wi-fi printer, cell phones, and an internet connection for my MacBook Pro - not too many connections, but still my connection drops all the time, all day long for no particular reason whatsoever.  I want to be able to have one good strong connection for my computer and the rest of the connections could be secondary.  I would like if the secondary items used a password, but not the same password as the main connection.  It seems to me like I'm not asking a lot, but I have no idea how to set this up because now I can't even find my Airport Extreme to configure it.
    So, if anybody has some advice on the best way to set this up and how I would be able to start that process without being able to even detect my Airport Extreme, I would sure appreciate any effort to help me out on this.

    Is your profile up to date?? Lion is not so commonly used now.. but was a lot more reliable than Yosemite.
    What modem do you have? Actual make and model is a big help.
    What is the main router? Is the modem supplied by ISP? Is it a gateway device?
    If you use the airport as bridge or router, I also need to know how it is connected into the system. Mostly people have it via ethernet to the main modem or router.. please confirm.
    One very important point.. the Wii need WEP security at least for older models.. You must NOT change security on the Extreme.. It must be set to WPA2 Personal (or nothing if you live at least 2km from other humans).
    So, if anybody has some advice on the best way to set this up and how I would be able to start that process without being able to even detect my Airport Extreme
    reset to factory and you will get control back.
    The best way to test is full factory reset.
    Factory reset universal
    Power off the AE.. ie pull the power cord or power off at the wall.. wait 10sec.. hold in the reset button.. be gentle.. power on again still holding in reset.. and keep holding it in for another 10sec. You may need some help as it is hard to both hold in reset and apply power. It will show success by rapidly blinking the front led. Release the reset.. and wait a couple of min for the AE to reset and come back with factory settings. If the front LED doesn’t blink rapidly you missed it and simply try again. The reset is fairly fragile in these.. press it so you feel it just click and no more.. I have seen people bend the lever or even break it. I use a toothpick as tool.
    Then redo the setup from the computer or iOS device with latest utility.
    1. Use very short names.. NOT APPLE RECOMMENDED names. No spaces and pure alphanumerics.
    eg AEgen6 and AEwifi for basestation and wireless respectively.
    Even better if the issue is more wireless use AE24ghz and AE5ghz for each band respectively.. with fixed channels as this also seems to help stop the nonsense.
    2. Use all passwords that also comply but can be a bit longer. ie 8-20 characters mixed case and numbers.. no non-alphanumerics.
    3. Ensure the AE always takes the same IP address.. this is not a problem if you are using AE as main router but is a problem for when it is used in bridge.. you have to use dhcp reservation from main router or use static IP on the AE setup.
    4. Check your share name on the computer is not changing.. make sure it also complies with the above.. short no spaces and pure alphanumeric..
    5. Make sure IPv6 is set to link-local only in the computer. For example wireless open the network preferences, wireless and advanced / TCP/IP.. and fix the IPv6. to link-local only.
    6. If the AE is bridged and still having dropouts use a LAN port to connect to the main router instead of WAN.. we are finding the AE is problematic on the WAN port.

  • Error: ORA-16778: redo transport error for one or more databases

    Hi all
    I have 2 database servers"Primary database and physical standby" in test environment( before going to Production)
    Before Dataguard broker configuration , DG setup was running fine , redo was being applied and archived on phy standby.
    but while enabling configuration i got "Warning: ORA-16607: one or more databases have failed" listener.ora & tnsnames.ora are updated with global_name_DGMGRL
    Please help me how can i resolve this issue .Thanks in advance.
    [oracle@PRIM ~]$ dgmgrl
    DGMGRL for Linux: Version 10.2.0.1.0 - Production
    Copyright (c) 2000, 2005, Oracle. All rights reserved.
    Welcome to DGMGRL, type "help" for information.
    DGMGRL> connect sys
    Password:
    Connected.
    DGMGRL> show configuration
    Configuration
    Name: test
    Enabled: YES
    Protection Mode: MaxPerformance
    Fast-Start Failover: DISABLED
    Databases:
    prim - Primary database
    stan - Physical standby database
    Current status for "test":
    Warning: ORA-16607: one or more databases have failed
    DGMGRL> show database
    show database
    ^
    Syntax error before or at "end-of-line"
    DGMGRL> remove configuration
    Warning: ORA-16620: one or more databases could not be contacted for a delete operation
    Removed configuration
    DGMGRL> exit
    [oracle@PRIM ~]$ connect sys/sys@prim as sysdba
    bash: connect: command not found
    [oracle@PRIM ~]$ lsnrctl stop
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 08-OCT-2006 19:52:30
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    The command completed successfully
    [oracle@PRIM ~]$ lsnrctl start
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 08-OCT-2006 19:52:48
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Starting /u01/app/oracle/product/10.2.0/db_1/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    System parameter file is /u01/app/oracle/product/10.2.0/db_1/network/admin/listener.ora
    Log messages written to /u01/app/oracle/product/10.2.0/db_1/network/log/listener.log
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=PRIM)(PORT=1521)))
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    Start Date 08-OCT-2006 19:52:48
    Uptime 0 days 0 hr. 0 min. 0 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /u01/app/oracle/product/10.2.0/db_1/network/admin/listener.ora
    Listener Log File /u01/app/oracle/product/10.2.0/db_1/network/log/listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=PRIM)(PORT=1521)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "PRIM_DGMGRLL" has 1 instance(s).
    Instance "PRIM", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    [oracle@PRIM ~]$ lsnrctl stop
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 08-OCT-2006 19:54:46
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    The command completed successfully
    [oracle@PRIM ~]$ lsnrctl start
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 08-OCT-2006 19:54:59
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Starting /u01/app/oracle/product/10.2.0/db_1/bin/tnslsnr: please wait...
    TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    System parameter file is /u01/app/oracle/product/10.2.0/db_1/network/admin/listener.ora
    Log messages written to /u01/app/oracle/product/10.2.0/db_1/network/log/listener.log
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=PRIM)(PORT=1521)))
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    [oracle@PRIM ~]$ dgmgrl
    DGMGRL for Linux: Version 10.2.0.1.0 - Production
    Copyright (c) 2000, 2005, Oracle. All rights reserved.
    Welcome to DGMGRL, type "help" for information.
    DGMGRL> connect /
    Connected.
    DGMGRL> create configuration test as
    primary database is PRIM
    connect identifier is PRIM
    ;Configuration "test" created with primary database "prim"
    DGMGRL> add database STAN as
    connect identifier is STAN
    maintained as physical;Database "stan" added
    DGMGRL> show configuration
    Configuration
    Name: test
    Enabled: NO
    Protection Mode: MaxPerformance
    Fast-Start Failover: DISABLED
    Databases:
    prim - Primary database
    stan - Physical standby database
    Current status for "test":
    DISABLED
    DGMGRL> enable configuration
    Enabled.
    DGMGRL> show configuration
    Configuration
    Name: test
    Enabled: YES
    Protection Mode: MaxPerformance
    Fast-Start Failover: DISABLED
    Databases:
    prim - Primary database
    stan - Physical standby database
    Current status for "test":
    Warning: ORA-16607: one or more databases have failed
    DGMGRL> show database verbose prim
    Database
    Name: prim
    Role: PRIMARY
    Enabled: YES
    Intended State: ONLINE
    Instance(s):
    PRIM
    Properties:
    InitialConnectIdentifier = 'prim'
    LogXptMode = 'ASYNC'
    Dependency = ''
    DelayMins = '0'
    Binding = 'OPTIONAL'
    MaxFailure = '0'
    MaxConnections = '1'
    ReopenSecs = '300'
    NetTimeout = '180'
    LogShipping = 'ON'
    PreferredApplyInstance = ''
    ApplyInstanceTimeout = '0'
    ApplyParallel = 'AUTO'
    StandbyFileManagement = 'AUTO'
    ArchiveLagTarget = '0'
    LogArchiveMaxProcesses = '30'
    LogArchiveMinSucceedDest = '1'
    DbFileNameConvert = '/u01/app/oracle/oradata/STAN, /u01/app/oracle/oradata/PRIM'
    LogFileNameConvert = '/u01/app/oracle/oradata/STAN, /u01/app/oracle/oradata/PRIM'
    FastStartFailoverTarget = ''
    StatusReport = '(monitor)'
    InconsistentProperties = '(monitor)'
    InconsistentLogXptProps = '(monitor)'
    SendQEntries = '(monitor)'
    LogXptStatus = '(monitor)'
    RecvQEntries = '(monitor)'
    HostName = 'PRIM'
    SidName = 'PRIM'
    LocalListenerAddress = '(ADDRESS=(PROTOCOL=tcp)(HOST=PRIM)(PORT=1521))'
    StandbyArchiveLocation = '/u01/app/oracle/flash_recovery_area/PRIM/archivelog/'
    AlternateLocation = ''
    LogArchiveTrace = '0'
    LogArchiveFormat = '%t_%s_%r.arc'
    LatestLog = '(monitor)'
    TopWaitEvents = '(monitor)'
    Current status for "prim":
    Error: ORA-16778: redo transport error for one or more databases
    DGMGRL> show database verbose stan
    Database
    Name: stan
    Role: PHYSICAL STANDBY
    Enabled: YES
    Intended State: ONLINE
    Instance(s):
    STAN
    Properties:
    InitialConnectIdentifier = 'stan'
    LogXptMode = 'ASYNC'
    Dependency = ''
    DelayMins = '0'
    Binding = 'OPTIONAL'
    MaxFailure = '0'
    MaxConnections = '1'
    ReopenSecs = '300'
    NetTimeout = '180'
    LogShipping = 'ON'
    PreferredApplyInstance = ''
    ApplyInstanceTimeout = '0'
    ApplyParallel = 'AUTO'
    StandbyFileManagement = 'AUTO'
    ArchiveLagTarget = '0'
    LogArchiveMaxProcesses = '30'
    LogArchiveMinSucceedDest = '1'
    DbFileNameConvert = '/u01/app/oracle/oradata/PRIM, /u01/app/oracle/oradata/STAN'
    LogFileNameConvert = '/u01/app/oracle/oradata/PRIM, /u01/app/oracle/oradata/STAN'
    FastStartFailoverTarget = ''
    StatusReport = '(monitor)'
    InconsistentProperties = '(monitor)'
    InconsistentLogXptProps = '(monitor)'
    SendQEntries = '(monitor)'
    LogXptStatus = '(monitor)'
    RecvQEntries = '(monitor)'
    HostName = 'STAND'
    SidName = 'STAN'
    LocalListenerAddress = '(ADDRESS=(PROTOCOL=tcp)(HOST=STAND)(PORT=1521))'
    StandbyArchiveLocation = '/u01/app/oracle/flash_recovery_area/STAN/archivelog/'
    AlternateLocation = ''
    LogArchiveTrace = '0'
    LogArchiveFormat = '%t_%s_%r.arc'
    LatestLog = '(monitor)'
    TopWaitEvents = '(monitor)'
    Current status for "stan":
    Error: ORA-12545: Connect failed because target host or object does not exist
    DGMGRL>

    This:
    Current status for "stan":
    Error: ORA-12545: Connect failed because target host or object does not exist
    says that your network setup is not correct. You need to resolve that first.
    As for Broker setup steps how about the doc or our Data Guard 11g Handbook?
    It's 3 DGMGRL commands so I am not sure what 'steps' you need?
    Larry

  • How to disable write to redo log file in oracle7.3.4

    in oracle 8, alter table no logged in redo log file like: alter table tablename nologging;
    how to do this in oracle 7.3.4?
    thanks.

    user652965 wrote:
    Thanks very much for your help guys. I appreciate it. unfortunately none of these commands worked for me. I kept getting error on clearing logs that redo log is needed to perform recovery so it can't be cleared. So I ended up restoring from earlier snapshot of my db volume. Database is now open.
    Thanks again for your input.And now, as a follow-up, at a minimum you should make sure that all redo log groups have at least 3 members. Then, if you lose a single redo log file, all you have to do is shutdown the db and copy one of the good members (of the same group as the lost member) over the lost member.
    And as an additional follow-up, if you value your data you will run in archivelog mode and take regular backups of the database and archivelogs. If you fail to do this you are saying that your data is not worth saving.

  • Is There a Way to Run a Redo log for a Single Tablespace?

    I'm still fairly new to Oracle. I've been reading up on the architecture and I am getting the hang of it. Actually, I have 2 questions.
    1) My first question is..."Is there a way to run the redo log file...but to specify something so that it only applies to a single tablespace and it's related files?"
    So, in a situation where, for some reason, only a single dbf file has become corrupted, I only have to worry about replaying the log for those transactions that affect the tablespace associated with that file.
    2) Also, I would like to know if there is a query I can run from iSQLPlus that would allow me to view the datafiles that are associated with a tablespace.
    Thanks

    1) My first question is..."Is there a way to run the
    redo log file...but to specify something so that it
    only applies to a single tablespace and it's related
    files?"
    No You can't specify a redolog file to record the transaction entries for a particular tablespace.
    In cas if a file gets corrupted.you need to apply all the archivelogs since the last backup plus the redologs to bring back the DB to consistent state.
    >
    2) Also, I would like to know if there is a query I
    can run from iSQLPlus that would allow me to view the
    datafiles that are associated with a tablespace.Select file_name,tablespace_name from dba_data_files will give you the
    The above will give you the number of datafiles that a tablespace is made of.
    In your case you have created the tablespace iwth one datafile.
    Message was edited by:
    Maran.E

  • Can one instance have multiple redo threads ?

    i was reading the Oracle Data guard 10g guide and it says
    Determine the appropriate number of standby redo log file groups.
    Minimally, the configuration should have one more standby redo log file group than the number of online redo log file groups on the primary database. However, the recommended number of standby redo log file groups is dependent on the number of threads on the primary database. Use the following equation to determine an appropriate number of standby redo log file groups:
    (maximum number of logfiles for each thread + 1) * maximum number of threads
    Using this equation reduces the likelihood that the primary instance's log writer (LGWR) process will be blocked because a standby redo log file cannot be allocated on the standby database. For example, if the primary database has 2 log files for each thread and 2 threads, then 6 standby redo log file groups are needed on the standby database
    while Oracle's definition of redo log states the following
    Redo Threads
    When speaking in the context of multiple database instances, the redo log for each database instance is also referred to as a redo thread. In typical configurations, only one database instance accesses an Oracle Database, so only one thread is present. In an Oracle Real Application Clusters environment, however, two or more instances concurrently access a single database and each instance has its own thread of redo.
    this is confusing, in a typical environment where only one instance accesses a database, can we have more than one redo thread ?

    Though you can create multiple threads but of no use in NON-RAC or non-parallel server configuration.
    Following is the generic formula. You should consider
    maximum number of threads = 1 for single instance (NON-RAC).
    (maximum number of logfiles for each thread + 1) * maximum number of threads
    Message was edited by:
    Reega

  • How do I organize / reorganize / redo my own Web email address?

    GL CS. Mac G5. Final Tiger.
    I'll try to be organized and explain clearly. Some questions re the Web site email address. The Web URL is "listenwritedesign.com."
    I enclose two screenshots for the material below. If only one shows, I'll send the other when you reply.
    I moved the site, which was previously named "daddydesktop.com," from its ISP to another ISP. The previous email address was "mailto:[email protected]." It shows in the Externals tab where there is a folder called "New addresses" and inside that, a folder named "Daddy."
    When I run Entourage, my Mac email app, the progress bar for the logging in process for "[email protected]" often beeps, and sometimes says I need to recheck my password, which has not changed. I sent an email to myself at that address and received this rejection message:
    This Message was undeliverable due to the following reason:
    Each of the following recipients was rejected by a remote mail server.
    The reasons given by the server are included to help you determine why
    each recipient was rejected.
        Recipient: <[email protected]>
        Reason:    No Such User Here
    Is it possible that, since I've moved to another ISP and renamed the site that I now need to delete that email address from the site, and also to delete that email account in Entourage?
    The Externals tab also shows an icon something like a folder, but not a folder, called "Scanned addresses." It has a sub-item, also with an icon I don't recognize, and it is named "listenwritedesign." It has an email address that does work but that I wish to change.
       Should I delete the "infodaddy" email address altogether in both GL and Entourage?
       Should I redo the "listenwritedesign" email address under the "New addresses" folder? May I rename that folder?
       Do I need to relink every single page that has email links or will they all reset to the new email address?
    Enough for now. Thanks. Two .png attachments are here, screenshots, and I hope they are visible.

    Hey!  I found the answer here.
    It seems like posting is the best kind of searching.

  • HT203177 I have a MacBook OSX 10.5.8 and a Time Capsule 500GB since July 2008. My problem is (for the 4th time in 4 yrs) the backup gets stuck in "preparing" indefinitely (hours). In the past, wile still under apple care warranty, tech support had me redo

    I have a MacBook OSX 10.5.8 and a Time Capsule 500GB since July 2008. My problem is (for the 4th time in 4 yrs) the backup gets stuck in "preparing" indefinitely (hours). In the past, wile still under apple care warranty, tech support had me redo backup (loosing previous backups). Now I'm out of warranty and still having this problem. Any help is greatly appreciated.

    I have a MacBook OSX 10.5.8 and a Time Capsule 500GB since July 2008. My problem is (for the 4th time in 4 yrs) the backup gets stuck in "preparing" indefinitely (hours). In the past, wile still under apple care warranty, tech support had me redo backup (loosing previous backups). Now I'm out of warranty and still having this problem. Any help is greatly appreciated.

  • How can I use undo and redo with run time menu?

    Hi..I try to built my own menu for graphic programming. How can I use undo and redo in labview with run time menu?

    filozof-
    During runtime, by default, LabVIEW has undo/redo data changes under the edit menu. This will undo/redo changes made to controls during runtime. If you want a more extensive undo/redo (custom for your application), you are going to have to do quite a few things
    1) Create a custom runtime menu (Edit>>RunTime Menu) and place your own undo/redo controls on it
    2) Keep an action history in your program
    3) Catch the Shortcut menu event for your custom undo/redo controls
    4) Reverse the last action in your histroy when you catch the event
    This method would allow you undo entire operations (like resize, move, or whatever kind of functionality you are building into your application) unstead of just undoing data changes.
    Xaq

  • View in expert mode shows following on the bottom PHOTO BIN, TOOL OPTIONS, UNDO, REDO, ROTATE, LAYOUT ORGANIZER how do i remove this?

    Adobe Photoshop Elements 11. When in EXPERT MODE i get the following  on the bottom PHOTO BIN, TOOL OPTIONS, UNDO, REDO, ROTATE, LAYOUT ORGANIZER how do i remove this?

    Sorry, but you don't. That's part of the way adobe changed PSE starting with PSE 11. If you don't like it, you can leave feedback here:
    Photoshop Family Customer Community

  • To many undo redo button

    Hi to everyone!!!
    I need your advice for my problem!!
    when I cliked new in the file to create a new JTextPane the undo redo button will multiply and if I have so many JTextPane then I have many undo redo in my toolbar
    here is my code.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.text.*;
    import java.util.*;
    import javax.swing.undo.*;
    public class URTest extends JFrame {
         JToolBar toolBar = new JToolBar();
         JButton undo;
         JButton redo = new JButton("Redo");
         JMenuBar menuBar = new JMenuBar();
         JMenu menu = new JMenu("File");
         JMenuItem item = new JMenuItem("New");
         JMenuItem item2 = new JMenuItem("Close");
         JTabbedPane tabbedPane = new JTabbedPane();
         JTextPane pane;
         public URTest() {
              item.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        create();
              item2.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        removeCreate();
              menu.add(item);
              menu.add(item2);
              menuBar.add(menu);
              this.add(toolBar,BorderLayout.NORTH);
              this.add(tabbedPane);
              this.setJMenuBar(menuBar);
         void create() {
              undo = new JButton("Undo");
              redo = new JButton("Redo");
              pane = new JTextPane();
              EditorKit editorKit = new StyledEditorKit() {
                   public Document createDefaultDocument() {
                        return new SyntaxDocument();
              pane.setEditorKit(editorKit);
              final CompoundUndoManager undoManager = new CompoundUndoManager( pane );
              undo.addActionListener( new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        try
                             undoManager.undo();
                             pane.requestFocus();
                        catch (CannotUndoException ex)
                             System.out.println("Unable to undo: " + ex);
              redo.addActionListener( new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        try
                             undoManager.redo();
                             pane.requestFocus();
                        catch (CannotRedoException ex)
                             System.out.println("Unable to redo: " + ex);
              toolBar.add(undo);
              toolBar.add(redo);
              tabbedPane.addTab("Tab",pane);
         void removeCreate() {
              tabbedPane.remove(tabbedPane.getSelectedIndex());
         public static void main(String[] args) {
              URTest frame = new URTest();
              frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              frame.setSize(400,400);
              frame.setVisible(true);
    class CompoundUndoManager extends UndoManager
         implements UndoableEditListener, DocumentListener
         public CompoundEdit compoundEdit;
         private JTextComponent editor;
         //  These fields are used to help determine whether the edit is an
         //  incremental edit. For each character added the offset and length
         //  should increase by 1 or decrease by 1 for each character removed.
         private int lastOffset;
         private int lastLength;
         public CompoundUndoManager(JTextComponent editor)
              this.editor = editor;
              editor.getDocument().addUndoableEditListener( this );
         **  Add a DocumentLister before the undo is done so we can position
         **  the Caret correctly as each edit is undone.
         public void undo()
              editor.getDocument().addDocumentListener( this );
              super.undo();
              editor.getDocument().removeDocumentListener( this );
         **  Add a DocumentLister before the redo is done so we can position
         **  the Caret correctly as each edit is redone.
         public void redo()
              editor.getDocument().addDocumentListener( this );
              super.redo();
              editor.getDocument().removeDocumentListener( this );
         **  Whenever an UndoableEdit happens the edit will either be absorbed
         **  by the current compound edit or a new compound edit will be started
         public void undoableEditHappened(UndoableEditEvent e)
              //  Start a new compound edit
              if (compoundEdit == null)
                   compoundEdit = startCompoundEdit( e.getEdit() );
                   lastLength = editor.getDocument().getLength();
                   return;
              //  Check for an attribute change
              AbstractDocument.DefaultDocumentEvent event =
                   (AbstractDocument.DefaultDocumentEvent)e.getEdit();
              if  (event.getType().equals(DocumentEvent.EventType.CHANGE))
                   compoundEdit.addEdit( e.getEdit() );
                   return;
              //  Check for an incremental edit or backspace.
              //  The change in Caret position and Document length should be either
              //  1 or -1 .
              int offsetChange = editor.getCaretPosition() - lastOffset;
              int lengthChange = editor.getDocument().getLength() - lastLength;
              if (Math.abs(offsetChange) == 1
              &&  Math.abs(lengthChange) == 1)
                   compoundEdit.addEdit( e.getEdit() );
                   lastOffset = editor.getCaretPosition();
                   lastLength = editor.getDocument().getLength();
                   return;
              //  Not incremental edit, end previous edit and start a new one
              compoundEdit.end();
              compoundEdit = startCompoundEdit( e.getEdit() );
         **  Each CompoundEdit will store a group of related incremental edits
         **  (ie. each character typed or backspaced is an incremental edit)
         private CompoundEdit startCompoundEdit(UndoableEdit anEdit)
              //  Track Caret and Document information of this compound edit
              lastOffset = editor.getCaretPosition();
              lastLength = editor.getDocument().getLength();
              //  The compound edit is used to store incremental edits
              compoundEdit = new MyCompoundEdit();
              compoundEdit.addEdit( anEdit );
              //  The compound edit is added to the UndoManager. All incremental
              //  edits stored in the compound edit will be undone/redone at once
              addEdit( compoundEdit );
              return compoundEdit;
         //  Implement DocumentListener
         //      Updates to the Document as a result of Undo/Redo will cause the
         //  Caret to be repositioned
         public void insertUpdate(final DocumentEvent e)
              SwingUtilities.invokeLater(new Runnable()
                   public void run()
                        int offset = e.getOffset() + e.getLength();
                        offset = Math.min(offset, editor.getDocument().getLength());
                        editor.setCaretPosition( offset );
         public void removeUpdate(DocumentEvent e)
              editor.setCaretPosition(e.getOffset());
         public void changedUpdate(DocumentEvent e)      {}
         class MyCompoundEdit extends CompoundEdit
              public boolean isInProgress()
                   //  in order for the canUndo() and canRedo() methods to work
                   //  assume that the compound edit is never in progress
                   return false;
              public void undo() throws CannotUndoException
                   //  End the edit so future edits don't get absorbed by this edit
                   if (compoundEdit != null)
                        compoundEdit.end();
                   super.undo();
                   //  Always start a new compound edit after an undo
                   compoundEdit = null;

    I was not actually sure what you wanted so I made the wild guess that you actually wanted only one pair of Undo/Redo buttons. Here you go :import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import java.util.List;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.text.*;
    import javax.swing.undo.*;
    public class URTest extends JPanel {
         private JMenuBar theMenuBar;
         private JTabbedPane theTabbedPane;
         private List<Pane> thePanes;
         private static class Pane {
              private JTextPane theTextPane;
              private CompoundUndoManager theUndoManager;
              private class CompoundUndoManager extends UndoManager implements UndoableEditListener, DocumentListener {
                   public CompoundEdit compoundEdit;
                   private int lastOffset;
                   private int lastLength;
                   public CompoundUndoManager() {
                        compoundEdit = null;
                   public void undo() {
                        theTextPane.getDocument().addDocumentListener(this);
                        super.undo();
                        theTextPane.getDocument().removeDocumentListener(this);
                   public void redo() {
                        theTextPane.getDocument().addDocumentListener(this);
                        super.redo();
                        theTextPane.getDocument().removeDocumentListener(this);
                   public void undoableEditHappened(UndoableEditEvent e) {
                        if (compoundEdit == null) {
                             compoundEdit = startCompoundEdit(e.getEdit());
                             lastLength = theTextPane.getDocument().getLength();
                             return;
                        AbstractDocument.DefaultDocumentEvent event = (AbstractDocument.DefaultDocumentEvent)e.getEdit();
                        if (event.getType().equals(DocumentEvent.EventType.CHANGE)) {
                             compoundEdit.addEdit(e.getEdit());
                             return;
                        int offsetChange = theTextPane.getCaretPosition() - lastOffset;
                        int lengthChange = theTextPane.getDocument().getLength() - lastLength;
                        if (Math.abs(offsetChange) == 1
                             && Math.abs(lengthChange) == 1) {
                             compoundEdit.addEdit(e.getEdit());
                             lastOffset = theTextPane.getCaretPosition();
                             lastLength = theTextPane.getDocument().getLength();
                             return;
                        compoundEdit.end();
                        compoundEdit = startCompoundEdit(e.getEdit());
                   private CompoundEdit startCompoundEdit(UndoableEdit anEdit) {
                        lastOffset = theTextPane.getCaretPosition();
                        lastLength = theTextPane.getDocument().getLength();
                        compoundEdit = new MyCompoundEdit();
                        compoundEdit.addEdit(anEdit);
                        addEdit(compoundEdit);
                        return compoundEdit;
                   public void insertUpdate(final DocumentEvent e) {
                        SwingUtilities.invokeLater(new Runnable() {
                             public void run() {
                                  int offset = e.getOffset() + e.getLength();
                                  offset = Math.min(offset, theTextPane.getDocument().getLength());
                                  theTextPane.setCaretPosition(offset);
                   public void removeUpdate(DocumentEvent e) {
                        theTextPane.setCaretPosition(e.getOffset());
                   public void changedUpdate(DocumentEvent e) {}
                   class MyCompoundEdit extends CompoundEdit {
                        public boolean isInProgress() {
                             return false;
                        public void undo() throws CannotUndoException {
                             if (compoundEdit != null) compoundEdit.end();
                             super.undo();
                             compoundEdit = null;
              public Pane() {
                   theTextPane = new JTextPane();
                   theTextPane.setEditorKit(new StyledEditorKit() {
                        public Document createDefaultDocument() {
                             return new SyntaxDocument();
                   theUndoManager = new CompoundUndoManager();
                   theTextPane.getDocument().addUndoableEditListener(theUndoManager);
              public JTextPane getTextPane() {
                   return theTextPane;
              public UndoManager getUndoManager() {
                   return theUndoManager;
         public URTest() {
              super(new BorderLayout(5, 5));
              setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));
              JToolBar toolBar = new JToolBar();
              toolBar.setFloatable(false);
              toolBar.add(new AbstractAction("Undo") {
                   public void actionPerformed(ActionEvent e) {
                        undo();
              toolBar.add(new AbstractAction("Redo") {
                   public void actionPerformed(ActionEvent e) {
                        redo();
              add(toolBar, BorderLayout.NORTH);
              thePanes = new LinkedList<Pane>();
              theTabbedPane = new JTabbedPane();
              add(theTabbedPane, BorderLayout.CENTER);
              theMenuBar = new JMenuBar();
              JMenu menu = new JMenu("File");
              menu.add(new AbstractAction("New") {
                   public void actionPerformed(ActionEvent e) {
                        create();
              menu.add(new AbstractAction("Close") {
                   public void actionPerformed(ActionEvent e) {
                        remove();
              theMenuBar.add(menu);
         public JMenuBar getMenuBar() {
              return theMenuBar;
         private void create() {
              Pane pane = new Pane();
              thePanes.add(pane);
              theTabbedPane.addTab("Tab", pane.getTextPane());
         private void remove() {
              Pane selectedPane = getSelectedPane();
              if (selectedPane == null) return;
              thePanes.remove(selectedPane);
              theTabbedPane.remove(selectedPane.getTextPane());
         private void undo() {
              Pane selectedPane = getSelectedPane();
              if (selectedPane == null) return;
              try {
                   selectedPane.getUndoManager().undo();
                   selectedPane.getTextPane().requestFocus();
              } catch (CannotUndoException ex) {
                   System.out.println("Unable to undo: " + ex);
         private void redo() {
              Pane selectedPane = getSelectedPane();
              if (selectedPane == null) return;
              try {
                   selectedPane.getUndoManager().redo();
                   selectedPane.getTextPane().requestFocus();
              } catch (CannotRedoException ex) {
                   System.out.println("Unable to redo: " + ex);
         private Pane getSelectedPane() {
              Component selectedComponent = theTabbedPane.getSelectedComponent();
              if (selectedComponent == null) return null;
              for (Pane pane : thePanes) {
                   if (pane.getTextPane() == selectedComponent) return pane;
              return null;
         private static void test() {
              JFrame f = new JFrame("URTest");
              f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              URTest urTest = new URTest();
              f.setContentPane(urTest);
              f.setJMenuBar(urTest.getMenuBar());
              f.setSize(400, 400);
              f.setLocationRelativeTo(null);
              f.setVisible(true);
         public static void main(String[] args) {
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        test();
    }Hope it helps.

  • Undo/Redo button are not performing more than one operation at a time

    Hi,
    I have created undo/redo button on my paint application. But it performing only last action to undo.I have just the code which store offscreen image into undo buffer image like this :
        if (OSC == null || widthOfOSC != getSize().width || heightOfOSC != getSize().height) {
                     // Create the OSC, or make a new one if canvas size has changed.
                 OSC = null;  // (If OSC & undoBuffer already exist, this frees up the memory.)
                 undoBuffer = null;
                 OSC = createImage(getSize().width, getSize().height);
                 widthOfOSC = getSize().width;
                 heightOfOSC = getSize().height;
                 OSG = OSC.getGraphics();  // Graphics context for drawing to OSC.
                 OSG.setColor(getBackground());              
                 OSG.dispose();
                 undoBuffer = createImage(widthOfOSC, heightOfOSC);
                  OSG = undoBuffer.getGraphics();  // Graphics context for drawing to the undoBuffer.
                  OSG.setColor(getBackground());            
                  OSG.fillRect(0, 0,widthOfOSC, heightOfOSC);
                   and the button performed it's action :
    else if (command.equals("Undo")) {
                 // Swap the off-screen canvas with the undoBuffer and repaint.
                 Image temp = OSC;
                 OSC = undoBuffer;
                 undoBuffer = temp;
                 repaint();I want to create undo button that performed end operation on canvas.
    please help me
    Thanks in advance....

    Don't post the same question repeatedly. I've removed the thread you started 4 days after this one with the identical same question.
    db

  • Problem in creating database -Missing Redo log file

    I am try to create a new database using DBCA .While creating a database it shows the error oracle instance terminated.Force Disconnected.
    My alert log file is
    Errors in file /u01/app/oracle/diag/rdbms/oracl/oracl/trace/oracl_ora_5424.trc:
    ORA-00313: open failed for members of log group 1 of thread 1
    ORA-00312: online log 1 thread 1: '/u01/app/oracle/oradata/oracl/redo01.log'
    ORA-27037: unable to obtain file status
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 3
    Wed Nov 06 10:07:27 2013
    Errors in file /u01/app/oracle/diag/rdbms/oracl/oracl/trace/oracl_ora_5424.trc:
    ORA-00313: open failed for members of log group 2 of thread 1
    ORA-00312: online log 2 thread 1: '/u01/app/oracle/oradata/oracl/redo02.log'
    ORA-27037: unable to obtain file status
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 3
    Errors in file /u01/app/oracle/diag/rdbms/oracl/oracl/trace/oracl_ora_5424.trc:
    ORA-00313: open failed for members of log group 3 of thread 1
    ORA-00312: online log 3 thread 1: '/u01/app/oracle/oradata/oracl/redo03.log'
    ORA-27037: unable to obtain file status
    Linux-x86_64 Error: 2: No such file or directory
    Additional information: 3
    Wed Nov 06 10:07:38 2013
    Setting recovery target incarnation to 2
    Wed Nov 06 10:07:38 2013
    Assigning activation ID 1876274518 (0x6fd5ad56)
    Thread 1 opened at log sequence 1
      Current log# 1 seq# 1 mem# 0: /u01/app/oracle/oradata/oracl/redo01.log
    Successful open of redo thread 1
    Wed Nov 06 10:07:38 2013
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    Wed Nov 06 10:07:38 2013
    SMON: enabling cache recovery
    Errors in file /u01/app/oracle/diag/rdbms/oracl/oracl/trace/oracl_ora_5424.trc  (incident=1345):
    ORA-00600: internal error code, arguments: [kpotcgah-7], [12534], [ORA-12534: TNS:operation not supported
    Incident details in: /u01/app/oracle/diag/rdbms/oracl/oracl/incident/incdir_1345/oracl_ora_5424_i1345.trc
    Wed Nov 06 10:07:46 2013
    Trace dumping is performing id=[cdmp_20131106100746]
    Errors in file /u01/app/oracle/diag/rdbms/oracl/oracl/trace/oracl_ora_5424.trc:
    ORA-00600: internal error code, arguments: [kpotcgah-7], [12534], [ORA-12534: TNS:operation not supported
    Error 600 happened during db open, shutting down database
    USER (ospid: 5424): terminating the instance due to error 600
    Instance terminated by USER, pid = 5424
    ORA-1092 signalled during: alter database "oracl" open resetlogs...
    ORA-1092 : opiodr aborting process unknown ospid (5424_47935551851664)
    Wed Nov 06 10:07:47 2013
    ORA-1092 : opitsk aborting process
                                                                                                                                   251,1         95%

    >I am try to create a new database using DBCA
    >Please help me to resolve this issue.My redo log file was missing
    DROP and recreate the database.  It is a *new* database without any data.
    Check what datafile locations and redo log file locations you specify when creating the new database. Check if you have permissions and enough disk space.
    Hemant K Chitale

  • I have uninstalled, reinstalled, scraped, redo.. and Adobe Flash is still not working on my 64 bit W

    I have uninstalled, reinstalled, scraped, redo.. and Adobe Flash is still not working on my 64 bit Win 7 system - where can I get an older version of flash it used to work - I have been fighting this for weeks and I have just about had it!!!

    =O====== M/11.0.1.152 2011-11-03+20-46-10.923 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\4E05.dir\InstallFlashPlayer.exe" -install -skipARPEntry -iv 8
    0001 [W] 00001036 Software\Macromedia\FlashPlayer\SafeVersions/11.0 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0004 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0006 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash11c.ocx
    0007 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11c_ActiveX.exe
    0008 [I] 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11c_ActiveX.dll
    0009 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/11.0.1.152 2011-11-03+20-46-11.479 ========
    =O====== M/11.1.102.55 2011-12-22+14-25-22.839 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\907E.dir\InstallFlashPlayer.exe" -install -skipARPEntry -iv 4
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash11c.ocx 5
    0004 [I] 00000018
    0005 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash11c.ocx 5
    0006 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11c_ActiveX.dll 5
    0007 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11c_ActiveX.exe 5
    0008 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash11e.ocx
    0009 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11e_ActiveX.exe
    0010 [I] 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11e_ActiveX.dll
    0011 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0012 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/11.1.102.55 2011-12-22+14-25-28.203 ========
    =O====== M/11.1.102.62 2012-02-17+17-28-48.780 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\3C83.dir\InstallFlashPlayer.exe" -install -skipARPEntry -iv 8
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash11e.ocx 5
    0004 [I] 00000018
    0005 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash11e.ocx 5
    0006 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11e_ActiveX.dll 5
    0007 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11e_ActiveX.exe 5
    0008 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash11f.ocx
    0009 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11f_ActiveX.exe
    0010 [I] 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11f_ActiveX.dll
    0011 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0012 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/11.1.102.62 2012-02-17+17-28-50.559 ========
    =O====== M/11.1.102.63 2012-03-06+22-39-45.880 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\AAD5.dir\InstallFlashPlayer.exe" -install -skipARPEntry -iv 8
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0003 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0004 [W] 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0005 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0006 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0007 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0008 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0009 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0010 [W] 00001036 Software\Opera Software/Plugin Path 2
    0011 [W] 00001036 Software\Opera Software/Plugin Path 2
    0012 [I] 00000014 C:\Windows\SysWOW64\Macromed\Flash\NPSWF32.dll
    0013 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11g_Plugin.exe
    0014 [I] 00000017 C:\Windows\SysWOW64\Macromed\Flash
    0015 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0016 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/11.1.102.63 2012-03-06+22-40-05.789 ========
    =O====== M/11.2.202.228 2012-04-02+20-31-37.451 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{77AB1D51-8573-4C3A-AB5C-5449C6178A82}\InstallFlash Player.exe" -install -skipARPEntry -iv 4
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11f_ActiveX.exe 5
    0004 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx
    0005 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_ActiveX.exe
    0006 [I] 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_ActiveX.dll
    0007 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    0009 [I] 00000021 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0010 [W] 00001102
    0011 [W] 00001106
    0012 [I] 00000012
    =X====== M/11.2.202.228 2012-04-02+20-32-51.563 ========
    =O====== M/11.2.202.228 2012-04-02+21-16-36.373 ========
    0000 [I] 00000010 "C:\Windows\TEMP\{32D818EB-7AB4-4EF9-A555-E706FB6CD0CD}\InstallFlashPlayer.exe" -install -skipARPEntry -iv 9
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0003 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0004 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0005 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0006 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0007 [W] 00001036 Software\Opera Software/Plugin Path 2
    0008 [W] 00001036 Software\Opera Software/Plugin Path 2
    0009 [I] 00000014 C:\Windows\SysWOW64\Macromed\Flash\NPSWF32_11_2_202_228.dll
    0010 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_Plugin.exe
    0011 [I] 00000017 C:\Windows\SysWOW64\Macromed\Flash
    0012 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0013 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    0014 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerApp.exe 183
    0015 [I] 00000021 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0016 [W] 00001106
    0017 [W] 00001106
    0018 [W] 00001024 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0019 [I] 00000012
    =X====== M/11.2.202.228 2012-04-02+21-16-46.743 ========
    =O====== M/11.2.202.228 2012-04-02+23-58-28.875 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{1B528E5F-7FB1-4420-B383-B487F603ABC0}\InstallFlash Player.exe" -install -skipARPEntry -iv 8
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx 5
    0004 [I] 00000018
    0005 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx 5
    0006 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx
    0007 [E] 00001025 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx:32
    =X====== M/11.2.202.228 2012-04-02+23-58-30.356 ========
    =O====== M/11.2.202.228 2012-04-03+12-47-48.926 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{74E1526C-DA12-413C-B167-EEB76CD26E3B}\InstallFlash Player.exe" -uninstall plugin
    0001 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0002 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0003 [W] 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0004 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0005 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0006 [W] 00001021
    0007 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0008 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0009 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0010 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0011 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0012 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0013 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0014 [W] 00001036 Software\Opera Software/Plugin Path 2
    0015 [W] 00001036 Software\Opera Software/Plugin Path 2
    =X====== M/11.2.202.228 2012-04-03+12-47-49.060 ========
    =O====== M/11.2.202.228 2012-04-03+12-48-20.078 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{63754798-338F-48CD-86B4-E24C87EA8C94}\InstallFlash Player.exe" -uninstall activex
    0001 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0002 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0003 [W] 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0004 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0005 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0006 [W] 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0007 [W] 00001021
    0008 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0009 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0010 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0011 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0012 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\System.ControlPanel.Category/C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 2
    0013 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0014 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0015 [W] 00001106
    =X====== M/11.2.202.228 2012-04-03+12-48-21.034 ========
    =O====== M/11.2.202.228 2012-04-03+13-19-26.250 ========
    0000 [I] 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_ActiveX.exe" -refreshIEElevationPolicies
    =X====== M/11.2.202.228 2012-04-03+13-19-26.270 ========
    =O====== M/11.2.202.228 2012-04-03+13-19-26.260 ========
    0000 [I] 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_ActiveX.exe" -refreshIEElevationPolicies
    =X====== M/11.2.202.228 2012-04-03+13-19-26.282 ========
    =O====== M/11.2.202.228 2012-04-03+13-19-24.150 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{C875AE6F-A9A6-4CFE-8113-B6D4E5B834CE}\InstallFlash Player.exe" -install -skipARPEntry -iv 1
    0001 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0004 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0005 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx
    0006 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_ActiveX.exe
    0007 [I] 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_ActiveX.dll
    0008 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0009 [I] 00000021 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0010 [W] 00001102
    0011 [W] 00001106
    =X====== M/11.2.202.228 2012-04-03+13-19-26.345 ========
    2012-4-4+4-16-0.210 [error] 1223 1056
    2012-4-4+7-16-0.211 [error] 1223 1056
    2012-4-5+0-16-0.210 [error] 1223 1056
    2012-4-5+7-16-0.225 [error] 1223 1056
    2012-4-6+0-16-0.211 [error] 1223 1056
    2012-4-6+4-16-0.211 [error] 1223 1056
    2012-4-7+7-16-0.210 [error] 1223 1056
    2012-4-8+2-16-0.211 [error] 1223 1056
    2012-4-9+1-16-0.211 [error] 1223 1056
    2012-4-9+3-16-0.211 [error] 1223 1056
    2012-4-10+7-16-0.210 [error] 1223 1056
    2012-4-11+7-16-0.213 [error] 1223 1056
    =O====== M/11.2.202.228 2012-04-11+16-21-14.959 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{C59DE903-1AA2-4BAC-88EE-CABBA8C02AAE}\InstallFlash Player.exe" -install -skipARPEntry -iv 8
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx
    0004 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_ActiveX.exe
    0005 [I] 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_ActiveX.dll
    0006 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    0008 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerApp.exe 183
    0009 [I] 00000021 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0010 [W] 00001106
    0011 [W] 00001106
    0012 [W] 00001024 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0013 [I] 00000012
    =X====== M/11.2.202.228 2012-04-11+16-21-19.651 ========
    =O====== M/11.2.202.228 2012-04-11+16-56-30.296 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{8EFBBA68-0DCC-4896-B19F-8B1D356D8E49}\InstallFlash Player.exe" -install -skipARPEntry -iv 8
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx
    0004 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_ActiveX.exe
    0005 [I] 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_ActiveX.dll
    0006 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    0008 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerApp.exe 183
    0009 [I] 00000021 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0010 [W] 00001106
    0011 [W] 00001106
    0012 [W] 00001024 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0013 [I] 00000012
    =X====== M/11.2.202.228 2012-04-11+16-56-34.420 ========
    =O====== M/11.2.202.228 2012-04-11+17-08-57.782 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{D303DACA-F5FC-41B7-B46F-4D8074A64776}\InstallFlash Player.exe" -uninstall activex
    0001 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0002 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0003 [W] 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0004 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0005 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0006 [W] 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0007 [W] 00001021
    0008 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0009 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0010 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0011 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0012 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\System.ControlPanel.Category/C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 2
    0013 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0014 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0015 [W] 00001106
    =X====== M/11.2.202.228 2012-04-11+17-08-59.030 ========
    =O====== M/11.2.202.228 2012-04-11+17-34-19.399 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{70548197-D56A-42BE-87E1-2C106D3A568B}\InstallFlash Player.exe" -install -skipARPEntry -iv 8
    0001 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0002 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0003 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0004 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx
    0005 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_ActiveX.exe
    0006 [I] 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_ActiveX.dll
    0007 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 [I] 00000021 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0009 [W] 00001102
    0010 [W] 00001106
    0011 [I] 00000012
    =X====== M/11.2.202.228 2012-04-11+17-34-22.607 ========
    =O====== M/11.2.202.228 2012-04-11+17-44-32.057 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{5B06673F-5277-4719-8765-C270F07D1E4A}\InstallFlash Player.exe" -install -skipARPEntry -iv 8
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx
    0004 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_ActiveX.exe
    0005 [I] 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_ActiveX.dll
    0006 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    0008 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerApp.exe 183
    0009 [I] 00000021 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0010 [W] 00001106
    0011 [W] 00001106
    0012 [W] 00001024 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0013 [I] 00000012
    =X====== M/11.2.202.228 2012-04-11+17-44-34.601 ========
    =O====== M/11.2.202.228 2012-04-11+18-00-57.295 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{48306457-DF5C-426C-93F4-E0A7ABE215AF}\InstallFlash Player.exe" -install -skipARPEntry -iv 8
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx
    0004 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_ActiveX.exe
    0005 [I] 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_ActiveX.dll
    0006 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    0008 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerApp.exe 183
    0009 [I] 00000021 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0010 [W] 00001106
    0011 [W] 00001106
    0012 [W] 00001024 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0013 [I] 00000012
    =X====== M/11.2.202.228 2012-04-11+18-01-00.238 ========
    =O====== M/11.2.202.228 2012-04-11+18-17-20.598 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{2B28E28F-5A4E-431E-B6BF-FC3774EC4741}\InstallFlash Player.exe" -install -skipARPEntry -iv 8
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx
    0004 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_ActiveX.exe
    0005 [I] 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_ActiveX.dll
    0006 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    0008 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerApp.exe 183
    0009 [I] 00000021 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0010 [W] 00001106
    0011 [W] 00001106
    0012 [W] 00001024 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0013 [I] 00000012
    =X====== M/11.2.202.228 2012-04-11+18-17-24.288 ========
    =O====== M/11.2.202.228 2012-04-11+18-24-02.518 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{28226FA9-4BF9-4F27-9691-14BE55E43B8D}\InstallFlash Player.exe" -install -skipARPEntry -iv 8
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0003 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0004 [W] 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0005 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0006 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0007 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0008 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0009 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0010 [W] 00001036 Software\Opera Software/Plugin Path 2
    0011 [W] 00001036 Software\Opera Software/Plugin Path 2
    0012 [I] 00000014 C:\Windows\SysWOW64\Macromed\Flash\NPSWF32_11_2_202_228.dll
    0013 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_Plugin.exe
    0014 [I] 00000017 C:\Windows\SysWOW64\Macromed\Flash
    0015 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0016 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    0017 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerApp.exe 183
    0018 [I] 00000021 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0019 [W] 00001106
    0020 [W] 00001106
    0021 [W] 00001024 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0022 [I] 00000012
    =X====== M/11.2.202.228 2012-04-11+18-24-05.541 ========
    =O====== M/11.2.202.228 2012-04-11+19-28-17.159 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{C5694828-2116-44EE-A7EC-F0730C0F2F5C}\InstallFlash Player.exe" -install -skipARPEntry -iv 8
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx
    0004 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_ActiveX.exe
    0005 [I] 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_228_ActiveX.dll
    0006 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    0008 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerApp.exe 183
    0009 [I] 00000021 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0010 [W] 00001106
    0011 [W] 00001106
    0012 [W] 00001024 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0013 [I] 00000012
    =X====== M/11.2.202.228 2012-04-11+19-28-19.626 ========
    2012-4-12+8-20-0.210 [error] 1223 1056
    =O====== M/11.2.202.228 2012-04-12+18-17-41.339 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{9EB923DA-C7EC-4AC1-A7FB-A3C4AF0B7572}\InstallFlash Player.exe" -install -skipARPEntry -iv 8
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx 5
    0004 [I] 00000018
    0005 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx 5
    0006 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx
    0007 [E] 00001025 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx:32
    =X====== M/11.2.202.228 2012-04-12+18-17-41.985 ========
    2012-4-12+19-20-0.211 [error] 1223 1056
    =O====== M/11.2.202.228 2012-04-12+19-59-43.162 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{ACFC546B-00EC-402C-A68D-A6DCB4B1AC0C}\InstallFlash Player.exe" -uninstall activex
    0001 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0002 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx 5
    0003 [I] 00000018
    0004 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx 5
    0005 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0006 [W] 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0007 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0008 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0009 [W] 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0010 [W] 00001021
    0011 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0012 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0013 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0014 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx 5
    0015 [I] 00000018
    0016 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx 5
    =X====== M/11.2.202.228 2012-04-12+19-59-43.426 ========
    =O====== M/11.2.202.228 2012-04-12+19-59-51.203 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{3B5E6ADC-D0F3-447F-9C13-F2A713F2A4FE}\InstallFlash Player.exe" -uninstall plugin
    0001 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0002 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0003 [W] 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0004 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0005 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0006 [W] 00001021
    0007 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0008 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0009 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0010 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0011 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\System.ControlPanel.Category/C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 2
    0012 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0013 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0014 [W] 00001106
    0015 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0016 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0017 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0018 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0019 [W] 00001036 Software\Opera Software/Plugin Path 2
    0020 [W] 00001036 Software\Opera Software/Plugin Path 2
    =X====== M/11.2.202.228 2012-04-12+19-59-52.344 ========
    =O====== M/11.2.202.228 2012-04-13+00-33-54.803 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{4AFC4324-0703-4FF0-A0AB-49B1186075EC}\InstallFlash Player.exe" -install -skipARPEntry -iv 8
    0001 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0002 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0003 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0004 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx 5
    0005 [I] 00000018
    0006 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx 5
    0007 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx
    0008 [E] 00001025 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx:32
    =X====== M/11.2.202.228 2012-04-13+00-33-55.379 ========
    =O====== M/11.2.202.228 2012-04-13+00-41-38.165 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{95B5486D-E382-44DB-B7B8-F8C843EEC05A}\InstallFlash Player.exe" -install -skipARPEntry -iv 8
    0001 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0002 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0003 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0004 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx 5
    0005 [I] 00000018
    0006 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx 5
    0007 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx
    0008 [E] 00001025 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx:32
    =X====== M/11.2.202.228 2012-04-13+00-41-38.721 ========
    =O====== M/11.2.202.228 2012-04-13+00-49-59.888 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{5E688F14-01E8-4AB5-AD32-913DFB6DE679}\InstallFlash Player.exe" -install -skipARPEntry -iv 8
    0001 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0002 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0003 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0004 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx 5
    0005 [I] 00000018
    0006 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx 5
    0007 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx
    0008 [E] 00001025 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx:32
    =X====== M/11.2.202.228 2012-04-13+00-50-00.237 ========
    =O====== M/11.2.202.228 2012-04-13+01-03-15.829 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{20E4E391-1202-4D27-BC84-248C4B14CC24}\InstallFlash Player.exe" -install -skipARPEntry -iv 8
    0001 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0002 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0003 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0004 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx 5
    0005 [I] 00000018
    0006 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx 5
    0007 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx
    0008 [E] 00001025 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx:32
    =X====== M/11.2.202.228 2012-04-13+01-03-16.152 ========
    =O====== M/11.1.102.55 2012-04-13+01-14-27.040 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\C56F.dir\InstallFlashPlayer.exe" -install -skipARPEntry -iv 2
    0001 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/Version 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0003 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0004 [W] 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0005 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0006 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0007 [W] 00001036 Software\Mozilla\Mozilla Firefox\extensions/Plugins 2
    0008 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0009 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0010 [W] 00001036 Software\Opera Software/Plugin Path 2
    0011 [W] 00001036 Software\Opera Software/Plugin Path 2
    0012 [I] 00000014 C:\Windows\SysWOW64\Macromed\Flash\NPSWF32.dll
    0013 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11e_Plugin.exe
    0014 [I] 00000017 C:\Windows\SysWOW64\Macromed\Flash
    0015 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/11.1.102.55 2012-04-13+01-14-34.999 ========
    =O====== M/11.2.202.233 2012-04-13+17-31-55.469 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{236034DE-37A0-47FE-B8DE-A6E6A5564ED8}\InstallFlash Player.exe" -install -skipARPEntry -iv 6
    0001 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0002 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0004 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0005 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx 5
    0006 [I] 00000018
    0007 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_228.ocx 5
    0008 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_233.ocx
    0009 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_233_ActiveX.exe
    0010 [I] 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_233_ActiveX.dll
    0011 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0012 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    0013 [I] 00000021 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0014 [W] 00001102
    0015 [W] 00001106
    0016 [I] 00000012
    =X====== M/11.2.202.233 2012-04-13+17-32-00.236 ========
    =O====== M/11.2.202.228 2012-04-13+17-31-45.966 ========
    0000 [I] 00000010 C:\Users\KATHIC~1\AppData\Local\Temp\IDC2.tmp\FP_AX_CAB_INSTALLER64.exe
    0001 [I] 00000011 1
    =X====== M/11.2.202.228 2012-04-13+17-32-08.311 ========
    =O====== M/11.2.202.233 2012-04-13+17-41-58.587 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{78A128AB-E73F-4549-8F75-1BBFB5CFF336}\InstallFlash Player.exe" -install -skipARPEntry -iv 8
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_233.ocx 5
    0004 [I] 00000018
    0005 [W] 00001015 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_233.ocx 5
    0006 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_233.ocx
    0007 [E] 00001025 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_233.ocx:32
    =X====== M/11.2.202.233 2012-04-13+17-41-59.294 ========
    =O====== M/11.2.202.233 2012-04-16+14-00-55.292 ========
    0000 [I] 00000010 "C:\Users\KATHIC~1\AppData\Local\Temp\{E64C4828-2F4A-40E7-96E3-914DEEBA08A6}\InstallFlash Player.exe" -install -skipARPEntry -iv 6
    0001 [I] 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 [I] 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash32_11_2_202_233.ocx
    0004 [I] 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_233_ActiveX.exe
    0005 [I] 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil32_11_2_202_233_ActiveX.dll
    0006 [I] 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    0008 [W] 00001024 C:\Windows\SysWOW64\FlashPlayerApp.exe 183
    0009 [I] 00000021 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe
    0010 [W] 00001106
    0011 [W] 00001106
    0012 [W] 00001024 C:\Windows\SysWOW64\Macromed\Flash\FlashPlayerUpdateService.exe 183
    0013 [I] 00000012
    =X====== M/11.2.202.233 2012-04-16+14-01-00.871 ========
    =O====== M/11.2.202.228 2012-04-16+14-00-36.121 ========
    0000 [I] 00000010 C:\Users\KATHIC~1\AppData\Local\Temp\IDC2.tmp\FP_AX_CAB_INSTALLER64.exe
    0001 [I] 00000011 1
    =X====== M/11.2.202.228 2012-04-16+14-01-05.800 ========

Maybe you are looking for

  • Javascript error when inserting dynamic table in DW

    Hi Im using DW9 (CS3) and have problem. When i klick on the 'dynamic table' button i get this error: While executing insertObject in Dynamic Table.htm, a Javascript error(s) occurred: Any sulution? Please send me a copy fo the reply to my mail: [emai

  • Apache Fop with apex 4.2

    Dears, I need to download my reports in pdf and formatted ms excel file, I do altos of search and found that the free way to do such is to configure the Fop in the apex, please guide me to do that : 1- How to configure the Fop in apex 4.2 ? 2- How to

  • I cannot find any support for using templates to send to multiple addressees

    I used this system last year, but cannot find how I did it; I want to send to all people in the special address book that I have set up, but without revealing the email address of all the members to each individual. I am using Thunderbird 24.6.0

  • How to correlate server genrated values in OATS

    Hi All I'm recording one of the EBS forms in OATS wherein server generated value automatically popsup in the textbox when we click on the textbox. This value is occuring only in Object details tree but not in the message of previous responses. Now i

  • IPad + Brushes + Stylus Pen = Lots of CREATIVITY

    Can I use a Stylus Pen on an iPad? I would be more creative creating artworks on Brushes using a stylus pen. Thanks! Frank Strallent SHOCKPROOFX.COM™ www.iPadizzle.com