OEM and Standby Monitoring

Hi,
I recently configured a physical standby database with dataguard (11gR2).
In OEM (principal database) main screen, there is an option DBConsole. When clicking in such option, it opens a screen that shows a table that would present information about the standby enviroronment (e.g. log apply in standby database). But it shows a message that there is no data available. Does anyone know if there is any agent that should be configured/started in order to present such information in OEM?
Regards

If you want to monitor a dataguard environment,you need centralized gridcontrol,not standalone dbconsole. Dbconsole does not work for a read-only physical standby.
Werner

Similar Messages

  • OEM and Standby Database

    I have not tried but I believe OEM does not automate creation of standby database be it physical or logical. Does it ?

    I m on 10.2.0.4 , Solaris os. I saw lot of forum questions on standby databse creation where folks have run into some errors while creating the standby db. No body mentioned that they are getting into errors while creating standby db through OEM or any other kind of automation from Oracle. It seems that all of them were trying to create the standby db manually by ollowing the procedure that Oracle recommends.
    Also, is data guard free ? Can I have a standby database without dataguard ? From the procedure, it looks like all you have to do is
    creata a log archive destination of type service on the primary so that log can be shipped on the other side. Where does data guard comes in picture?
    I am sorry if I sound dumb here but I am new to standby database and stuff like that.

  • How i use OEM 12c to monitor Microsoft Active directory.

    Hi,
    How i use OEM 12c to monitor Microsoft Active directory.Please assist me on this.
    Thanks,
    Sagar

    Hi,
    The fundamental problem with this scenario is that you have non-failover capable modules in a failover chassis - think of the ASA failover pair as one device and the IPS modules as two completely separate devices.
    Then, as already mentioned, add only the primary ASA. (The secondary will never be passing traffic in standby mode so it's not actually needed in MARS) Then, with the first IPS module you can add it as a module of the ASA or as a standalone device (MARS doesn't care). With the second IPS module the only option is to add it as a separate device anyway.
    In a failover scenario the ASA's swap IP's but the IPS's don't so whereas you'll only ever get messages from the active ASA you'll get messages from both IPS IP's depending on which one happens to be in the active ASA at the time.
    Don't forget that you have to manually replicate all IPS configuration every time you make a change.
    HTH
    Andrew.

  • How to configure Enterprise Manager Database Control (EMDC) to make it work on 2 servers working (primary and standby) under DG rules

    Hello everybody i use Oracle Database EE 11.2.0.4 with DG.
    In those cases i need to get Enterprise Manager Database Control running against DB with no RAC and no DG i perform the following steps:
    I Logon SQLPLUS as user SYS or SYSTEM, and drop the sysman account and management objects:
    DECLARE
    CURSOR c1 IS
    SELECT owner, synonym_name name
    FROM dba_synonyms
    WHERE table_owner = 'SYSMAN';
    BEGIN
    FOR r1 IN c1 LOOP
    IF r1.owner = 'PUBLIC' THEN
    EXECUTE IMMEDIATE 'DROP PUBLIC SYNONYM '||r1.name;
    ELSE
    EXECUTE IMMEDIATE 'DROP SYNONYM '||r1.owner||'.'||r1.name;
    END IF;
    END LOOP;
    END;
    DROP USER mgmt_view CASCADE;
    DROP ROLE mgmt_user;
    DROP USER sysman CASCADE;
    After that i run
    emca -config dbcontrol db -repos recreate
    But what should i do in cases i have 2 servers working (primary and standby) under DG rules?

    Hi ,
    It is not possible to monitor/administer a Logical or Physical Standby database, i.e Data Guard, using Enterprise Manager Database Control.  This is primarily due to the fact that Database Control is designed to monitor 1 database and a Data Guard environment, by definition, includes more than 1 database.
    If you attempt to run emca against a standby Database, you will get an error like (i.e. ORA-01219: database not open).
    Database Control, can, of course, be used to monitor the current Primary database (with no ability to administer or monitor Data Guard related functionality).  In such a case, when failover occurs Database Control must be reconfigured to run on the new Primary database using the commands detailed in Note 278100.1 How To Drop, Create And Recreate DB Control In A 10g Database, section C. Recreate/ReConfig DB Control, Option 2. Recreate the DB Control Configuration Files and Repository.
    Enterprise Manager Grid Control or Cloud Control provides the functionality for viewing, monitoring, and administering primary and standby databases in a Data Guard configuration.
    Reference: Is it Possible to Configure Database Control for a Logical or Physical Standby Database? (Doc ID 315116.1)
    You can use EM 12c cloud control to monitor and manager Standby DB effectively
    Ref to below link for details
    Set Up and Manage Oracle Data Guard using Oracle Enterprise Manager Cloud Control 12c
    Regards,
    Rahul

  • DG primary and standby

    Hi all,
    11.2.0.1
    Aix 6.1
    I want to monitor the applied logs both on my primary and standby
    using > select client_process, process, sequence#, status from v$managed_standby;
    I want to issue the command on my client laptop so I want compare the output easily, whether logs are synch.
    How can I connect to a standby database s which is not open using client?
    Thanks a lot,
    zxy

    hi,
    Just wanted to share
    On Primary
    SELECT THREAD# "Thread",SEQUENCE# "Last Sequence Generated"
    FROM V$ARCHIVED_LOG
    WHERE (THREAD#,FIRST_TIME ) IN (SELECT THREAD#,MAX(FIRST_TIME) FROM V$ARCHIVED_LOG GROUP BY THREAD#)
    ORDER BY 1;
    On Standby
    SELECT ARCH.THREAD# "Thread", ARCH.SEQUENCE# "Last Sequence Received", APPL.SEQUENCE# "Last Sequence Applied",
    (ARCH.SEQUENCE# - APPL.SEQUENCE#) "Difference"
    FROM
    (SELECT THREAD# ,SEQUENCE# FROM V$ARCHIVED_LOG WHERE (THREAD#,FIRST_TIME ) IN
    (SELECT THREAD#,MAX(FIRST_TIME) FROM V$ARCHIVED_LOG GROUP BY THREAD#)) ARCH,
    (SELECT THREAD# ,SEQUENCE# FROM V$LOG_HISTORY WHERE (THREAD#,FIRST_TIME ) IN
    (SELECT THREAD#,MAX(FIRST_TIME) FROM V$LOG_HISTORY GROUP BY THREAD#)) APPL
    WHERE ARCH.THREAD# = APPL.THREAD# ORDER BY 1;
    SELECT THREAD#, LOW_SEQUENCE#, HIGH_SEQUENCE# FROM V$ARCHIVE_GAP;
    Reference : http://www.oraclemasters.in/?p=1255
    -- List archivelogs not applied on standby
    SELECT DISTINCT SEQUENCE# FROM V$ARCHIVED_LOG where APPLIED='NO' and sequence# > 100 MINUS (SELECT SEQUENCE# FROM V$ARCHIVED_LOG where APPLIED='YES' AND SEQUENCE# IN (SELECT DISTINCT SEQUENCE# FROM V$ARCHIVED_LOG where APPLIED='NO'));
    -- Give the count of archvielogs not applied on standby
    select thread#,count(sequence#) "COUNT_ARCS_PENDING" from (SELECT DISTINCT THREAD# ,SEQUENCE#  FROM V$ARCHIVED_LOG where APPLIED='NO' and sequence# > 100 MINUS (SELECT THREAD#,SEQUENCE# FROM V$ARCHIVED_LOG  where APPLIED='YES' AND SEQUENCE# IN (SELECT DISTINCT SEQUENCE# FROM V$ARCHIVED_LOG where APPLIED='NO' and sequence# > 100))) group by thread#;

  • Purging archivelogs on Primary and Standby

    Hi all,
    11.2.0.1
    Aix 6.1
    I am monitoring space usage in our FRA for both DG primary and standby. I want to purge all archivelogs once they have been applied to standby. What is the use of it anyway?
    I checked google and I found this procedure,  kindly correct if this is wrong?
    At Primary:
    =========
    RMAN
    CONFIGURE ARCHIVELOG DELETION POLICY TO APPLIED ON STANDBY;
    At Standby:
    ========
    RMAN
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE;
    Where do I issue the command DELETE NOPROMPT OBSOLETE ARCHIVELOGS?
    Thanks a lot,
    zxy

    Which tool in oracle dear maintains the FRA/achivelogs? is it RMAN or Dataguard. If it maintains
    them  auto, why is that I still have lots of archivelog at PRIMARY and STANDBY?
    primary:oracle[/backup/flash_recovery_area/PROD/archivelog] ls -lt
    total 200
    drwxr-x---    2 oracle   oinstall       4096 Sep 25 15:59 2013_09_25
    drwxr-x---    2 oracle   oinstall       4096 Sep 24 22:51 2013_09_24
    drwxr-x---    2 oracle   oinstall       4096 Sep 23 22:03 2013_09_23
    drwxr-x---    2 oracle   oinstall       4096 Sep 22 23:02 2013_09_22
    drwxr-x---    2 oracle   oinstall       4096 Sep 21 21:25 2013_09_21
    drwxr-x---    2 oracle   oinstall       4096 Sep 20 22:05 2013_09_20
    drwxr-x---    2 oracle   oinstall       4096 Sep 19 23:00 2013_09_19
    drwxr-x---    2 oracle   oinstall       4096 Sep 18 22:03 2013_09_18
    drwxr-x---    2 oracle   oinstall       4096 Sep 17 22:53 2013_09_17
    drwxr-x---    2 oracle   oinstall       4096 Sep 16 23:00 2013_09_16
    drwxr-x---    2 oracle   oinstall       4096 Sep 15 23:01 2013_09_15
    drwxr-x---    2 oracle   oinstall       4096 Sep 15 02:45 2013_09_01
    drwxr-x---    2 oracle   oinstall       4096 Sep 14 20:32 2013_09_14
    drwxr-x---    2 oracle   oinstall       4096 Sep 13 23:29 2013_09_13
    drwxr-x---    2 oracle   oinstall       4096 Sep 12 22:02 2013_09_12
    drwxr-x---    2 oracle   oinstall       4096 Sep 11 23:43 2013_09_11
    drwxr-x---    2 oracle   oinstall       4096 Sep 10 22:27 2013_09_10
    drwxr-x---    2 oracle   oinstall       4096 Sep 09 23:10 2013_09_09
    drwxr-x---    2 oracle   oinstall       4096 Sep 08 23:00 2013_09_08
    drwxr-x---    2 oracle   oinstall       4096 Sep 07 23:30 2013_09_07
    drwxr-x---    2 oracle   oinstall       4096 Sep 06 23:11 2013_09_06
    drwxr-x---    2 oracle   oinstall       4096 Sep 05 22:02 2013_09_05
    drwxr-x---    2 oracle   oinstall       4096 Sep 04 23:45 2013_09_04
    drwxr-x---    2 oracle   oinstall       4096 Sep 03 22:09 2013_09_03
    drwxr-x---    2 oracle   oinstall       4096 Sep 02 22:33 2013_09_02
    standby:oracle[/backup/flash_recovery_area/PRODDR/archivelog] ls -lt
    total 296
    drwxr-x---    2 oracle   oinstall       4096 Sep 25 15:59 2013_09_25
    drwxr-x---    2 oracle   oinstall       4096 Sep 24 23:24 2013_09_24
    drwxr-x---    2 oracle   oinstall       4096 Sep 23 22:13 2013_09_23
    drwxr-x---    2 oracle   oinstall       4096 Sep 22 23:02 2013_09_22
    drwxr-x---    2 oracle   oinstall       4096 Sep 21 21:39 2013_09_21
    drwxr-x---    2 oracle   oinstall       4096 Sep 20 22:08 2013_09_20
    drwxr-x---    2 oracle   oinstall       4096 Sep 19 23:01 2013_09_19
    drwxr-x---    2 oracle   oinstall       4096 Sep 18 22:23 2013_09_18
    drwxr-x---    2 oracle   oinstall       4096 Sep 17 22:53 2013_09_17
    drwxr-x---    2 oracle   oinstall       8192 Sep 16 23:01 2013_09_16
    drwxr-x---    2 oracle   oinstall       8192 Sep 16 00:46 2013_09_15
    drwxr-x---    2 oracle   oinstall       4096 Sep 15 01:34 2013_09_14
    drwxr-x---    2 oracle   oinstall       4096 Sep 14 01:03 2013_09_13
    drwxr-x---    2 oracle   oinstall       4096 Sep 13 01:48 2013_09_12
    drwxr-x---    2 oracle   oinstall       4096 Sep 12 03:29 2013_09_11
    drwxr-x---    2 oracle   oinstall       4096 Sep 11 01:19 2013_09_10
    drwxr-x---    2 oracle   oinstall       4096 Sep 10 01:54 2013_09_09
    drwxr-x---    2 oracle   oinstall       4096 Sep 09 01:44 2013_09_08
    drwxr-x---    2 oracle   oinstall       4096 Sep 08 01:59 2013_09_07
    drwxr-x---    2 oracle   oinstall       4096 Sep 07 03:30 2013_09_06
    drwxr-x---    2 oracle   oinstall       4096 Sep 06 02:05 2013_09_05
    drwxr-x---    2 oracle   oinstall       4096 Sep 05 03:40 2013_09_04
    drwxr-x---    2 oracle   oinstall       4096 Sep 04 01:48 2013_09_03
    drwxr-x---    2 oracle   oinstall       4096 Sep 03 01:22 2013_09_02
    drwxr-x---    2 oracle   oinstall       4096 Sep 02 02:31 2013_09_01
    drwxr-x---    2 oracle   oinstall       4096 Sep 01 00:08 2013_08_31
    drwxr-x---    2 oracle   oinstall       4096 Aug 31 03:18 2013_08_30
    drwxr-x---    2 oracle   oinstall       4096 Aug 30 00:28 2013_08_29
    drwxr-x---    2 oracle   oinstall       4096 Aug 29 03:51 2013_08_28
    drwxr-x---    2 oracle   oinstall       4096 Aug 28 02:34 2013_08_27
    drwxr-x---    2 oracle   oinstall        256 Aug 26 00:24 2013_08_26
    drwxr-x---    2 oracle   oinstall        256 Aug 25 00:24 2013_08_25
    drwxr-x---    2 oracle   oinstall        256 Aug 24 00:24 2013_08_24
    drwxr-x---    2 oracle   oinstall        256 Aug 23 00:21 2013_08_23
    drwxr-x---    2 oracle   oinstall        256 Aug 22 00:00 2013_08_22
    drwxr-x---    2 oracle   oinstall        256 Aug 21 00:20 2013_08_21
    drwxr-x---    2 oracle   oinstall        256 Aug 20 00:17 2013_08_20
    drwxr-x---    2 oracle   oinstall        256 Aug 19 00:16 2013_08_19
    drwxr-x---    2 oracle   oinstall        256 Aug 18 00:17 2013_08_18
    drwxr-x---    2 oracle   oinstall        256 Aug 17 00:14 2013_08_17
    drwxr-x---    2 oracle   oinstall        256 Aug 16 00:13 2013_08_16
    drwxr-x---    2 oracle   oinstall        256 Aug 15 00:12 2013_08_15
    drwxr-x---    2 oracle   oinstall       4096 Aug 14 10:53 2013_08_14
    drwxr-x---    2 oracle   oinstall       4096 Aug 13 23:34 2013_08_13
    drwxr-x---    2 oracle   oinstall       4096 Aug 12 23:10 2013_08_12
    drwxr-x---    2 oracle   oinstall       4096 Aug 11 21:25 2013_08_11
    drwxr-x---    2 oracle   oinstall       4096 Aug 10 22:44 2013_08_10
    All of the above dates have been applied already. Thanks.

  • CSCuc72466 - Spine Control Bus fail in both active and standby - 2

    Hello,
    we have running Version 5.2.(7) on "Nexus7000 C7010 (10 Slot) Chassis with 2 "Supervisor module-1X" N7K-SUP1
    our system is affected by this bug today.
    mery cristmas and happy new year!

    Spine Control Bus fail in both active and standby
    CSCuc72466
    -->
    Description
    Symptom:
    SpineControlBus diagnostic test failure on active and/or standby supervisor.
    Conditions:
    This happens when active and standby supervisors run the Spine test at the same time.
    Workaround:
    Configure the following for the module in question (only one SUP, even if both have the error):
    NOTE: Test 11 is for Sup1, Test 10 is for Sup2
    N7K(config)# no diagnostic monitor module 5 test 11
    N7K(config)# diagnostic clear result module 5 test 11
    N7K(config)# diagnostic monitor interval module 5 test 11 hour 0 min 0 second 31
    N7K(config)# diagnostic monitor module 5 test 11
    N7K(config)# diagnostic start module 5 test 11
    This workaround will decrease the possibility of this condition occurring but does not guarantee that the diagnostic failure will never be encountered. For that the customer needs to upgrade to the proper code with this fix.
    Further Problem Description:
    Customer Visible
    Save Bug
    Open Support Case
    View Bug in CDETS
    Was the description about this Bug Helpful?
    (10)
    Details
    Last Modified:
    Feb 28,2015
    Status:
    Fixed
    Severity:
    4 Minor
    Product:
    Cisco Nexus 7000 Series Switches
    Support Cases:
    1164
    Known Affected Releases:
    (3)
    5.2(3a)
    5.2(9.51)
    6.0(1)
    Known Fixed Releases:
    (10)
    5.2(9.177)S0
    5.2(9a)
    5.2(9a)S5
    6.1(4.97)S0
    6.1(5)
    6.1(5.32)S0
    6.2(1)S8
    6.2(1.14)S0
    6.2(2)
    7.0(0.5)
    Download software for  Cisco Nexus 7000 Series Switches
    Support Cases:
    (1164)
    Support case links are not customer visible
    -->
    Related Bugs
    Bug(s)
    -->
    Community Discussion on CSCuc72466 - Cisco Support Community

  • What is difference between BP monitor and supplier monitor?

    hi friends
    what is difference between BP monitor and Supplier Monitor
    what is tcode for BPmonitor
    Regards
    Vinny

    Hi Vinny,
    Please refer to the following links. These seems useful:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f051efda-bc58-2910-3785-e60d1f798c96
    The specified item was not found.
    New Business Process Monitoring functionalities in SAP Solution Manager – ALE / IDoc Monitoring
    Regards,
    Saumya

  • What is the diffrence between ' Contolfile ' and ' Standby Controlfile' ???

    Hi Guru's,
    Can someone please help me out with the diffrences between a 'Control File' and 'Standby Controlfile'.
    Thanks in advance
    Regards,
    Girish

    Kind of reply you can always expect from Sybrand...anyways...the controlfile of any production database would always be having a bit in itself which identifies a database as a primary or a standby database, so whenever you try to query select database_role from v$database; for any production database it would always give output as PRIMARY and for a standby it would always give output as PHYSICAL STANDBY..Hope it clears your doubts
    Regards,
    Ajinkya

  • No data in Usage and Standby?

    Hi,
    I have recently exchanged my white 16GB iphone at the local retail store, but have just noticed that since I exchanged it there does not seem to be any Usage figures in the general settings.
    By that I mean the "usage" and "standby" are blank, above the message "usage times will be shown after iphone is fully charged".
    To try and correct it, I reset the phone yesterday and it was on charge from 10pm last night to 7am this morning so I would have thought would be fully charged. (the battery meter appears to be fully charged)
    Is anyone else experiencing this problem or has any advice on how to correct it?
    Thanks for your help.

    When adding/creating an email account, the following presets are available.
    Exchange
    MobileMe
    Gmail
    Yahoo Mail
    AOL
    If you selected the Yahoo Mail account preset when adding/creating the account, the account was created as an IMAP account with Push access available for received messages along with an option to enable or disable Push access for the account.
    The data required to connect with the incoming mail server for an email account to check the incoming mail server for new messages is minute. More battery will be used the more often an account is checked for new messages, but this alone is not a significant battery drain and especially with a single email account. All server stored mailboxes with an IMAP account are not synchronized with the server when the account is checked for new messages. For example, the account's server stored Sent mailbox is not synchronized with the server until the account's Sent mailbox is selected.
    Push is not a constant fetch process. With an account that supports Push access for received messages, a new message received at the incoming mail server is "pushed" to the iPhone without the account having to be checked for new messages. In theory, Push access should use less battery compared to automatically checking the account for new messages, which isn't always the case and this also depends on the time interval set for automatically checking for new messages. You can have the account automatically checked for new messages every hour.
    Depending on how much data is accessed compared to the number and length of phone calls when roaming internationally, data access can be much more expensive.

  • Macbook Pro and External Monitor flashing?

    I am using a Macbook Pro with an External Dell 1908fp 19" monitor via a Thunderbolt to DVI adaptor all fine.
    However the annoying niggle I have is that the monitor which seems fine, keeps flashing intermittently on and off randomly?!?
    Would anyone know why this is happening and if its the Mac's fault? I have the MBP open and the Monitor as the 2nd screen at 1440x900 which it seems to have defaulted to, and its very clear on both screens.
    Is my monitor on its way out? it seems ok, and is quite new (though it was 2nd hand a couple of years ago) or is this a known Apple issue?
    Thanks for any help

    The graphics card in the MBP supports resolutions far greater than that of the internal display, so any modern monitor will work fine - up to and including Apple's excellent (but pricey) Thunderbolt display and Cinema display.
    The MBP will detect the external display and set the image to the correct resolution automatically, or you can choose the resolution in System Preferences -> Displays, so you don't need to worry about a black border.
    Most modern monitors are 1080p and this works perfectly as an external display for a MBP.  You will need a mini-displayport to HDMI cable to connect the two.  If you get a monitor with built in speakers then that cable will also transfer audio.

  • Wily Introscope is not running in Solution Manager 7.1 and tech monitoring

    Hi Experts,
    we are able to log in wily introscope, But metrics(values) are not coming in wily
    we re started the solution manager server, that port is working fine now, Please assist me on this to fix issue find log as attachment.
    2)we configure the technical monitoring in our solution manager system but metrics are not coming for dialog response time in dash board. which extractor i need to check how to troubleshoot,
    thanks in advance for you help
    Best Reg

    Hi Srivastav.
    Actually i am new to solution manager, and we have done basic steps of solution manager like
    system preparation,basic configuration,managed system configuration and technical monitoring,
    in tech monitoring system monitoring,and EUEM and we are planing to perform DVM and RBPD,
    my solution manager system is installed on windows 2008 server, version is 7.1 SP 7,
    currently we facing issue in wily introscope and technical monitoring dash boards metrics are not appearing and please tell me how to close the thread ,
    Best Regards,
    Hanuman

  • IPad unresponsive after iOS 8.02 update, doesn't show up in iTunes, hardware reset (home and standby buttons both held down for ten seconds) not working

    I have a 32GB iPad mini that was purchased new in June of this year. A little while ago, I started the iOS 8.02 download while it was plugged into a wall socket using an official apple wall to USB plug and an official apple thunderbolt cable. I then left for 25 minutes to get some food.
    On coming back, I discovered the iPad with a black screen showing the apple logo. I thought this was just an ordinary part of the update, it was restarting or something after installation, so I thought nothing of it. Then, after another minute or two, the screen flashed blue and then went completely black.
    Puzzled, I waited for another second and the apple logo reappeared as if the iPad was restarting again. However, after a few minutes, this happened again. This has been going on for the last half an hour, and I was wondering has anybody experienced this before.
    As I stated in the title, it won't show up in iTunes, and the hardware reset or whatever it's called doesn't work. Also, bear in mind I had issues syncing it with iTunes the night before and it also seemed to crash a few times last night, restarting the iPad and bringing it to the blank screen with the apple logo for a few seconds before going to the lock screen. That didn't happen at all this morning though.
    The iPad is not jailbroken, however, it does have licenses for gba4iOS, which is still installed on it, and a VPN license installed on it by the Hola app, which I deleted but never bothered deleting the license for. Any help would be greatly appreciated.

    Hi Colin how are you?
    I updated my IPAD yesterday and have the exact same problem.
    Itunes does not recognize my ipad. Home and standby also doesnt work.
    Also have the blue thing every few minutes and the apple logo but it never goes beyond it.
    Have you solved the issue?
    IPAD AIR

  • Standby database(11g) was still in sync after stopping the primary and standby database listener.

    Hello !!!
    I have noticed that my standby database(11g) was still in sync after stopping the primary and standby database listener.
    If this is the case then how log is transferring from primary to standby ? it is not using listener service ? kindly clarify

    Read this Metalink Note:407040.1

  • Viewer and External Monitor doesn't playback at same time

    When watching clips in the viewer window, they playback fine. But on my external monitor, it only shows the first frame from when it's played. when I stop playback, the external monitor then shows the last frame the Viewer window is stopped on. How can I fix it so that the viewer and external monitor playback the clip at the same time?
    At the moment we're digitizing footage with the Offline RT Photo JPEG codec set to 75% quality.
    A few days ago we were digitizing footage at 35% quality and that footage plays back fine. We moved to 75% quality at the editor's request. A few days ago we had created a few sample 75% quality tests for the editor to view. I loaded those clips into Final Cut right now and they playback fine as well. So it's all of a sudden just these new clips created yesterday :S.
    Message was edited by: Phillip Roh

    Yes.
    Forgot to mention that the timeline plays all the footage back properly on both the canvas window and the external monitor. Sorry for not mentioning that sooner.
    More discoveries! The playback 'freeze' only happens if I open a clip from the browser into the viewer. If I open a clip from the timeline into the viewer, it plays-back fine!
    Message was edited by: Phillip Roh

Maybe you are looking for