Reinstatiation  out-of-sync database

Hi all
I am replicating a 3TB database from Oracle 10.2.0.5 Single Instance AIX (source) to 11.2.0.3 RAC (two nodes and this is target) Linux.
The replication is setup and working, the initial instantiation took long time though due to different platform, used transportable tablespaces and the entire process took around 20 hours.
Now that the replication is setup I would like to avoid run initial instantiation again. I would like to know if this is possible, I will run RMAN backup in both RAC and Single Instance Database plus archived logs and the trails. If for some reason the target is out of sync (for example a 5000 million rows table, in this case is faster restore instead of initial load) can I restore the trails, RMAN backup, recover to a specific scn and run the replicat with afterscn or atscn option? Do I have to reposition the replicat to start from a specific rba? Do I need to "manipulate" the checkpoint table located in the source database?
Thanks in advance

Hi Steve
We will try the best to sync the data of course.
We are currently replicating one schema only. There are a couple of tables which occupies 5000 million and 9000 million of rows and getting around 50 million inserts per table per day, our worry is that if one of these tables are out of sync to resync a table which such activity and amount of data the procedure can be tricky.
The procedure I mentioned with RMAN is straight forward in terms of Oracle but I have doubts how to deal with the OGG checkpoint table and the OGG trails in the target site when the target database is restored and recovered, how to get these synced with the database just recovered.
Today is the 3TB database but in a couple of months time if OGG works well we will start another project to replicate a 45TB database.
Thanks
Hafeez

Similar Messages

  • Jabber for Windows and Unity Connection Voice mail out of sync

    Hello all,
    Now that Jabber is pretty much part of every install you begin to notice some trends. One trend that I have noticed happening across several of customers is complaints about Jabber and the Voicemail server getting out of sync. It’s never really been a wide spread issue but it has be noticed by several of my customers enough so that I’m reaching out to see if others are experiencing the same problem. Here are the symptoms, a person sitting at their desk they have a physical phone, and a windows PC running Jabber 4 Windows. They miss a call and the MWI lamp gets lit on the phone but not on Jabber. When you click on HELP / Show Connection status, you see all green checks, and Voicemail shows connected from Jabbers standpoint. When you exit the application and come back in, then it sync’s back up just fine. I have never seen it happen myself, but to be honest I’m never at my desk enough to even notice if my phone lamp is lit.
    Anyway has anyone had similar issues? If so is there a fix?

    Symptom:
    User logged in Jabber and do not log-off/sign-out for more than 24 hours and then jabber does not receive new voicemails from Unity Connection. User will be able to receive voicemails from other interfaces like Outlook, TUI but voicemails will not show up in Jabber.
    Conditions:
    User does not sign out from jabber for more than 24 hours since last log on.
    Workaround:
    Sign out from jabber at-least once a day and sign-in back so that subscription will not expire in Unity Connection database.
    Voicemail does not sync if Jabber left logged in for more than 24 hours
    CSCuo46274
    Can be fixed, depends on releases, TAC offered me a fix in version 10.5(1)ES29

  • Published mp4 lags, is out of sync, and does not match the Project Preview - help please!

    My Captivate 7 project includes two video demo slides with audio narration. The published mp4 video is vastly different from what it should be and how it shows in a preview in Captivate. I have tried publishing it again twice - once I changed the settings by clicking "Force republish all the slides" in the Advanced Options but the published mp4 is still messed up - the video freezes while the audio proceeds and other out of sync problems.

    The ! turns up when iPhoto loses the connection between the thumbnail in the iPhoto Window and the file it represents.
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • Exported slideshow to Quicktime, music now out of sync

    Hello: I created a slideshow in iPhoto with music and transitions in sync, then exported it to Quicktime. When I play it in Quicktime, the music track is slightly out of sync with the slides. Can anyone give me any suggestions? Thanks!
    Powerbook G4   Mac OS X (10.4.7)  

    slhmca:
    Welcome to the Apple Discussions. I think that problem was fixed with 10.4.8 and the newest Quicktime version. Download and use the 10.4.8 COMBO updater as opposed the the Software Update method. I'd do the same with the Quicktime version. QT 7.1.3 is required if you need to access videos from the iTMS. Otherwise QuickTime 7.1.2 for Mac will suffice. It depends on your iTunes situation.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.

  • Logical Standby out of sync after archiver stuck (how to resync)

    Hi,
    I had an archiver stuck on my logical standby database for about 4 hours this night.
    2 hours later my primary db also had an archiver stuck.
    After solving the problem by repairing the backup mechanism and startup of the archivelog backup I realised
    that some tables are out of sync.
    How can I get back all things back in sync again?
    DB: 11gR2 EE
    OS: RedHat Linux 5.5
    Thanks
    941743

    Hi,
    I don't sure have or not resyncronization whole schema, but you can use with PL/SQL as
    Stop SQL Apply on logical  standby  database
    SQL> ALTER DATABASE STOP LOGICAL STANDBY APPLY;
    on primary
    SQL>  begin
      2> for t in (select table_name from db_tables where owner = '<your schema name>')
      3> loop
      4>   DBMS_LOGSTDBY.INSTANTIATE_TABLE(shema_name => '<your schema name>', object_name => T.Table_name, dblink => '<you dblink name>');
      5> end loop;
      6>end;
    Start SQL Apply on logical standby database
    SQL> ALTER DATABASE START LOGICAL STANDBY APPLY IMMEDIATE;If you skip DML and DDL for your schema, then you must UNSKIP DML and DDL on this tables you must add following script to PL/SQL block before INSTANTIATE_TABLEs.
    DBMS_LOGSTDBY.UNSKIP(stmt => 'DML', schema_name => '<your schema name>', object_name => T.Table_Name);
    DBMS_LOGSTDBY.UNSKIP(stmt => 'DDL', schema_name => '<your schema name>', object_name => T.Table_Name);Regards
    Mahir M. Quluzade
    Edited by: Mahir M. Quluzade on Sep 13, 2012 6:17 PM

  • [SOLVED]Mirrors All Out of Sync

    Today I went to reinstall a package(thunar) after trying out PCManFM and realized I don't like it and I got these errors:
    :: Retrieving packages from extra...
    error: failed retrieving file 'thunar-1.6.0-3-x86_64.pkg.tar.xz' from hive.ist.unomaha.edu : The requested URL returned error: 404 Not Found
    error: failed retrieving file 'thunar-1.6.0-3-x86_64.pkg.tar.xz' from hive.ist.unomaha.edu : The requested URL returned error: 404 Not Found
    warning: failed to retrieve some files from extra
    error: failed to commit transaction (download library error)
    Errors occurred, no packages were upgraded
    So I tried uncommenting a different mirror and got the same thing. Then I uncommented every mirror in my country and got this error:
    :: Retrieving packages from extra...
    error: failed retrieving file 'thunar-1.6.0-3-x86_64.pkg.tar.xz' from mirror.us.leaseweb.net : The requested URL returned error: 404 Not Found
    thunar-1.6.0-3-x86_64 208.0 B 6.20M/s 00:00 [######################] 100%
    thunar-1.6.0-3-x86_64 4.2 KiB 9.32K/s 00:00 [######################] 100%
    (1/1) checking package integrity [######################] 100%
    error: failed to commit transaction (wrong or NULL argument passed)
    Errors occurred, no packages were upgraded.
    I doubled checked /etc/pacman.conf to be sure that all my repositories are uncommented. Indeed they are. What's going on here?
    Last edited by xworld (2012-12-10 04:10:33)

    It's not the mirrors out of sync, it's your local database. The current version of thunar is 1.6.1-1. Do a pacman -Syu first.
    Last edited by Scimmia (2012-12-10 02:33:50)

  • Pacman: could not open sync database: core

    Yesterday, after i move /usr to a new partition and made change to /etc/fstab to mount /usr to that new partition!
    After that, when i tried to run pacman -Syu i got this:
    config: line 7: all directives must belong to a section
    config: line 7: all directives must belong to a section
    config: line 7: all directives must belong to a section
    :: Synchronizing package databases...
    failed to synchronize core
    failed to synchronize extra
    failed to synchronize community
    error: could not open sync database: core
           have you used --refresh yet?
    Here is my /etc/pacman.conf
    # /etc/pacman.conf
    # See the pacman.conf(5) manpage for option and repository directives
    # GENERAL OPTIONS
    [options]
    # The following paths are commented out with their default values listed.
    # If you wish to use different paths, uncomment and update the paths.
    #RootDir     = /
    #DBPath      = /var/lib/pacman/
    #CacheDir    = /var/cache/pacman/pkg/
    #LogFile     = /var/log/pacman.log
    HoldPkg     = pacman glibc
    # If upgrades are available for these packages they will be asked for first
    #SyncFirst   = pacman
    #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
    #XferCommand = /usr/bin/curl %u > %o
    #CleanMethod = KeepInstalled
    # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
    #IgnorePkg   =
    #IgnoreGroup =
    #NoUpgrade   =
    #NoExtract   =
    # Misc options (all disabled by default)
    #UseSyslog
    #ShowSize
    #UseDelta
    #TotalDownload
    # REPOSITORIES
    #   - can be defined here or included from another file
    #   - pacman will search repositories in the order defined here
    #   - local/custom mirrors can be added here or in separate files
    #   - repositories listed first will take precedence when packages
    #     have identical names, regardless of version number
    #   - URLs will have $repo replaced by the name of the current repo
    # Repository entries are of the format:
    #       [repo-name]
    #       Server = ServerName
    #       Include = IncludePath
    # The header [repo-name] is crucial - it must be present and
    # uncommented to enable the repo.
    # The testing repositories are disabled by default. To enable, uncomment the
    # repo name header and Include lines. You can add preferred servers immediately
    # after the header, and they will be used before the default mirrors.
    #[testing]
    ## Add your preferred servers here, they will be used first
    #Include = /etc/pacman.d/mirrorlist
    [core]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/mirrorlist
    [extra]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/mirrorlist
    #[community-testing]
    ## Add your preferred servers here, they will be used first
    #Include = /etc/pacman.d/mirrorlist
    [community]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/mirrorlist
    # An example of a custom package repository.  See the pacman manpage for
    # tips on creating your own repositories.
    #[custom]
    #Server = file:///home/custompkgs
    Here is pacman.d/mirrorlist
    # Arch Linux repository mirrorlist
    # North America
    # - United States
    Server = ftp://ftp.archlinux.org/$repo/os/i686
    Server = ftp://locke.suu.edu/linux/dist/archlinux/$repo/os/i686
    Server = http://archlinux.unixheads.org/$repo/os/i686
    Server = ftp://ftp.gtlib.gatech.edu/pub/linux/di … po/os/i686
    Server = ftp://mirror.cs.vt.edu/pub/ArchLinux/$repo/os/i686
    Server = http://mirrors.easynews.com/linux/archl … po/os/i686
    Server = ftp://ftp.ibiblio.org/pub/linux/distrib … po/os/i686
    Server = http://archlinux.umflint.edu/mirrors/ar … po/os/i686
    Server = http://mirror.neotuli.net/arch/$repo/os/i686
    Server = http://mirror.rit.edu/archlinux/$repo/os/i686
    Server = http://mirror.umoss.org/archlinux/$repo/os/i686
    Server = http://schlunix.org/archlinux/$repo/os/i686
    Server = http://mirror.archlinux.com.ve/$repo/os/i686
    #Server = http://mirrors.gigenet.com/archlinux/$repo/os/i686
    # - Canada
    Server = ftp://mirror.csclub.uwaterloo.ca/archli … po/os/i686
    Server = ftp://mirrors.portafixe.com/archlinux/$repo/os/i686
    # South America
    # - Brazil
    Server = http://archlinux.c3sl.ufpr.br/$repo/os/i686
    Server = ftp://archlinux.c3sl.ufpr.br/archlinux/$repo/os/i686
    Server = ftp://ftp.las.ic.unicamp.br/pub/archlinux/$repo/os/i686
    # - Venezuela
    #Server = http://mirror2.archlinux.com.ve/$repo/os/i686
    # Europe
    # - Austria
    Server = ftp://gd.tuwien.ac.at/opsys/linux/archl … po/os/i686
    # - Belgium
    Server = ftp://ftp.belnet.be/mirror/archlinux.org/$repo/os/i686
    # - Czech Republic
    Server = ftp://ftp.sh.cvut.cz/MIRRORS/arch/$repo/os/i686
    # - Denmark
    Server = ftp://ftp.klid.dk/archlinux/$repo/os/i686
    # - Estonia
    Server = ftp://ftp.estpak.ee/pub/archlinux/$repo/os/i686
    # - France
    #Server = ftp://mir1.archlinuxfr.org/archlinux/$repo/os/i686
    #Server = ftp://mir2.archlinuxfr.org/archlinux/$repo/os/i686
    #Server = ftp://distrib-coffee.ipsl.jussieu.fr/pu … po/os/i686
    #Server = http://mir.archlinux.fr/$repo/os/i686
    #Server = ftp://ftp.free.fr/mirrors/ftp.archlinux … po/os/i686
    #Server = ftp://ftp.rez-gif.supelec.fr/Linux/arch … po/os/i686
    # - Germany
    #Server = ftp://ftp.hosteurope.de/mirror/ftp.arch … po/os/i686
    #Server = ftp://ftp5.gwdg.de/pub/linux/archlinux/$repo/os/i686
    #Server = ftp://ftp.uni-bayreuth.de/pub/linux/arc … po/os/i686
    #Server = ftp://ftp.archlinuxppc.org/i686/$repo/os/i686
    #Server = ftp://ftp.tu-chemnitz.de/pub/linux/arch … po/os/i686
    #Server = http://ftp.uni-kl.de/pub/linux/archlinux/$repo/os/i686
    #Server = ftp://mirrors.igprolin-online.org/archl … po/os/i686
    #Server = ftp://ftp-stud.hs-esslingen.de/pub/Mirr … po/os/i686
    # - Great Britain
    #Server = http://www.mirrorservice.org/sites/ftp. … po/os/i686
    #Server = ftp://mirrors.uk2.net/pub/archlinux/$repo/os/i686
    #Server = http://archlinux.mirrors.uk2.net/$repo/os/i686
    #Server = ftp://mirror.lividpenguin.com/pub/archl … po/os/i686
    # - Greece
    Server = ftp://ftp.ntua.gr/pub/linux/archlinux/$repo/os/i686
    # - Hungary
    Server = ftp://ftp.mfa.kfki.hu/pub/mirrors/ftp.a … po/os/i686
    # - Ireland
    #Server = ftp://ftp.heanet.ie/mirrors/ftp.archlin … po/os/i686
    # - Italy
    #Server = ftp://mi.mirror.garr.it/mirrors/archlinux/$repo/os/i686
    # - Netherlands
    #Server = ftp://ftp.nluug.nl/pub/metalab/distribu … po/os/i686
    #Server = ftp://ftp.surfnet.nl/pub/os/Linux/distr … po/os/i686
    # - Norway
    #Server = http://mirror.archlinux.no/$repo/os/i686
    # - Poland
    Server = ftp://mirror.icis.pcz.pl/archlinux/$repo/os/i686
    Server = http://piotrkosoft.net/pub/mirrors/ftp. … po/os/i686
    Server = ftp://ftp.piotrkosoft.net/pub/mirrors/f … po/os/i686
    Server = http://unix.net.pl/archlinux.org/$repo/os/i686
    # - Portugal
    #Server = ftp://cesium.di.uminho.pt/pub/archlinux/$repo/os/i686
    # - Romania
    #Server = ftp://ftp.iasi.roedu.net/mirrors/archli … po/os/i686
    # - Russia
    Server = ftp://mirror.yandex.ru/archlinux/$repo/os/i686
    Server = http://archlinux.freeside.ru/$repo/os/i686
    # - Sweden
    Server = ftp://ftp.ds.hj.se/pub/os/linux/archlinux/$repo/os/i686
    Server = ftp://ftp.gigabit.nu/$repo/os/i686
    # - Switzerland
    #Server = http://archlinux.puzzle.ch/$repo/os/i686
    # - Turkey
    #Server = ftp://ftp.linux.org.tr/pub/mirrors/arch … po/os/i686
    # - Ukraine
    #Server = ftp://archlinux.hell.org.ua/archlinux/$repo/os/i686
    #Server = ftp://ftp.linux.kiev.ua/pub/Linux/ArchL … po/os/i686
    # Asia
    # - Indonesia
    # Server = http://archlinux.cbn.net.id/$repo/os/i686
    # Server = ftp://archlinux.cbn.net.id/pub/archlinux/$repo/os/i686
    # - Israel
    #Server = http://mirror.isoc.org.il/pub/archlinux/$repo/os/i686
    # - Vietnam
    # Domain name is ftp.indochinalinux.com but there are frequent DNS problems
    Server = ftp://202.78.230.5/archlinux/$repo/os/i686
    # Australia
    Server = ftp://mirror.pacific.net.au/linux/archl … po/os/i686
    Server = ftp://mirror.aarnet.edu.au/pub/archlinux/$repo/os/i686
    Server = ftp://ftp.iinet.net.au/pub/archlinux/$repo/os/i686
    Server = http://mirror.internode.on.net/pub/arch … po/os/i686
    I'm using pacman 2.9.8! Quite out date but i can't update since i'm getting above error!
    I'm a newbie, i hope someone gives me some help on this!
    Thank you!

    Yes, i did that but get the same result:
    [kureikain@axcoto ~]$ sudo pacman -Syy
    Password:
    config: line 7: all directives must belong to a section
    config: line 7: all directives must belong to a section
    config: line 7: all directives must belong to a section
    :: Synchronizing package databases...
    failed to synchronize core
    failed to synchronize extra
    failed to synchronize community
    error: could not open sync database: core
           have you used --refresh yet?
    [kureikain@axcoto ~]$
    Any way to get pacman work again? Thank you!

  • Out of sync  Oracle DB on AIX machine

    Hi Masters,
    Again hit with the log out of sync error on primary and secondary but this time teh DG_BROKER_START=TRUE .
    My machine in AIX.
    Below are some details and query that i fired on DR database. I have tried the command " ALTER DATABASE REGISTER LOGFILE 'LOGFILE NAME' but it says log file already registered.
    Please let me know what i need to do to fix this issue.
    SQL> *show parameter DG_BROKER_START*
    NAME TYPE VALUE
    dg_broker_start boolean TRUE
    SQL> *select switchover_status from v$database;*
    SWITCHOVER_STATUS
    SESSIONS ACTIVE
    SQL> *select process,status,sequence# from v$managed_standby;*
    PROCESS STATUS SEQUENCE#
    ARCH CONNECTED 0
    ARCH CONNECTED 0
    RFS RECEIVING 585297
    RFS RECEIVING 585296
    SQL> *select sequence#,applied,first_time,next_time from v$archived_log order by sequence#;*
    585258 YES 15-NOV-12 15-NOV-12
    585259 YES 15-NOV-12 15-NOV-12
    585260 YES 15-NOV-12 15-NOV-12
    585261 NO 15-NOV-12 15-NOV-12
    585262 NO 15-NOV-12 15-NOV-12
    585263 NO 15-NOV-12 15-NOV-12
    585264 NO 15-NOV-12 15-NOV-12
    |
    |
    585295 NO 16-NOV-12 16-NOV-12
    585296 NO 16-NOV-12 16-NOV-12
    585297 NO 16-NOV-12 16-NOV-12
    SQL> *archive log list;*
    Database log mode Archive Mode
    Automatic archival Enabled
    Archive destination /u03/oradata/ccnbdr/archive
    Oldest online log sequence 585294
    Next log sequence to archive 0
    Current log sequence 585298
    SQL> *SELECT ARCH.THREAD# "Thread", ARCH.SEQUENCE# "Last Sequence Received", APPL.SEQUENCE# "Last Sequence Applied", (ARCH.SEQUENCE# - APPL.SEQUENCE#) "Difference"*
    *2 FROM*
    *3 (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,*
    *4 (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*
    *5 WHERE*
    *6 ARCH.THREAD# = APPL.THREAD#*
    *7 ORDER BY 1;*
    Thread Last Sequence Received Last Sequence Applied Difference
    1 585297 585260 37

    Hi ,
    This are the DR DB logs ....seems like MRP process got shutdown.
    Thu Nov 15 06:51:26 2012
    Media Recovery Waiting for thread 1 seq# 585259
    Media Recovery Log /u03/oradata/ccnbdr/archive/standbyccnbdr_1_585259.arc
    Thu Nov 15 06:54:41 2012
    Media Recovery Waiting for thread 1 seq# 585260
    Media Recovery Log /u03/oradata/ccnbdr/archive/standbyccnbdr_1_585260.arc
    Thu Nov 15 08:41:43 2012
    Media Recovery Waiting for thread 1 seq# 585261
    Thu Nov 15 08:59:40 2012
    alter database recover managed standby database cancel
    Thu Nov 15 08:59:43 2012
    MRP0: Background Media Recovery user canceled with status 16037
    Recovery interrupted.
    MRP0: Background Media Recovery process shutdown
    Thu Nov 15 08:59:45 2012
    Managed Standby Recovery Cancelled
    Completed: alter database recover managed standby database ca
    Thu Nov 15 08:59:46 2012
    alter database open read only
    Thu Nov 15 08:59:47 2012
    SMON: enabling cache recovery
    Thu Nov 15 08:59:54 2012
    Database Characterset is UTF8
    replication_dependency_tracking turned off (no async multimaster replication found)
    Completed: alter database open read only
    Fri Nov 16 00:28:02 2012
    ALTER DATABASE REGISTER LOGFILE '/u03/oradata/ccnbdr/archive/standbyccnbdr_1_585261.arc'
    Fri Nov 16 00:28:02 2012
    There are 1 logfiles specified.
    ALTER DATABASE REGISTER [PHYSICAL] LOGFILE
    Register archivelog /u03/oradata/ccnbdr/archive/standbyccnbdr_1_585261.arc already exists
    ORA-16089 signalled during: ALTER DATABASE REGISTER LOGFILE '/u03/oradata/ccnb...
    Fri Nov 16 00:28:32 2012
    ALTER DATABASE REGISTER LOGFILE '/u03/oradata/ccnbdr/archive/standbyccnbdr_1_585262.arc'
    Fri Nov 16 00:28:32 2012
    There are 1 logfiles specified.
    ALTER DATABASE REGISTER [PHYSICAL] LOGFILE
    Register archivelog /u03/oradata/ccnbdr/archive/standbyccnbdr_1_585262.arc already exists
    ORA-16089 signalled during: ALTER DATABASE REGISTER LOGFILE '/u03/oradata/ccnb...
    $

  • Log out of sync

    Hi Gurus,
    Need urgent help .....My Primary and Secondary database logs are out of sync. I am new to this Dataguard and want help in fixing this issue. I went through some blogs and found people suggesting a restart of DR system .Not sure is it correct or not . Have posted below my Primary and DR databae current state :-
    PRIMARY DB
    =================
    Thread Last Sequence Generated
    1 52293
    1 52293
    SQL> archive log list
    Database log mode Archive Mode
    Automatic archival Enabled
    Archive destination E:\oracle\P01\oraarch\P01arch
    Oldest online log sequence 52291
    Next log sequence to archive 52294
    Current log sequence 52294
    SQL> show parameter DG_BROKER_START
    NAME TYPE VALUE
    dg_broker_start boolean FALSE
    +++++++++++++++++
    SECONDARY
    +++++++++++++++++
    After sequence 52223 next log is missing ,after that all log recieved but not applied
    SEQUENCE# APP FIRST_TIM NEXT_TIME
    52215 YES 06-NOV-12 06-NOV-12
    52216 YES 06-NOV-12 06-NOV-12
    52217 YES 06-NOV-12 06-NOV-12
    52218 YES 06-NOV-12 06-NOV-12
    52219 YES 06-NOV-12 06-NOV-12
    52220 YES 06-NOV-12 06-NOV-12
    52221 YES 06-NOV-12 06-NOV-12
    52222 YES 06-NOV-12 06-NOV-12
    52223 YES 06-NOV-12 06-NOV-12
    52225 NO 06-NOV-12 07-NOV-12
    52226 NO 07-NOV-12 07-NOV-12
    SEQUENCE# APP FIRST_TIM NEXT_TIME
    52227 NO 07-NOV-12 07-NOV-12
    52228 NO 07-NOV-12 07-NOV-12
    52229 NO 07-NOV-12 07-NOV-12
    52230 NO 07-NOV-12 07-NOV-12
    52231 NO 07-NOV-12 07-NOV-12
    52232 NO 07-NOV-12 07-NOV-12
    52233 NO 07-NOV-12 07-NOV-12
    52234 NO 07-NOV-12 07-NOV-12
    52235 NO 07-NOV-12 07-NOV-12
    52236 NO 07-NOV-12 07-NOV-12
    52237 NO 07-NOV-12 07-NOV-12
    SEQUENCE# APP FIRST_TIM NEXT_TIME
    52238 NO 07-NOV-12 07-NOV-12
    52239 NO 07-NOV-12 07-NOV-12
    52240 NO 07-NOV-12 07-NOV-12
    52241 NO 07-NOV-12 07-NOV-12
    52242 NO 07-NOV-12 07-NOV-12
    52243 NO 07-NOV-12 07-NOV-12
    52244 NO 07-NOV-12 07-NOV-12
    52245 NO 07-NOV-12 07-NOV-12
    52246 NO 07-NOV-12 07-NOV-12
    52247 NO 07-NOV-12 07-NOV-12
    52248 NO 07-NOV-12 07-NOV-12
    SEQUENCE# APP FIRST_TIM NEXT_TIME
    52249 NO 07-NOV-12 07-NOV-12
    52250 NO 07-NOV-12 07-NOV-12
    52251 NO 07-NOV-12 07-NOV-12
    52252 NO 07-NOV-12 07-NOV-12
    52253 NO 07-NOV-12 07-NOV-12
    52254 NO 07-NOV-12 07-NOV-12
    52255 NO 07-NOV-12 07-NOV-12
    52256 NO 07-NOV-12 07-NOV-12
    52257 NO 07-NOV-12 07-NOV-12
    52258 NO 07-NOV-12 07-NOV-12
    52259 NO 07-NOV-12 07-NOV-12
    SEQUENCE# APP FIRST_TIM NEXT_TIME
    52260 NO 07-NOV-12 08-NOV-12
    52261 NO 08-NOV-12 08-NOV-12
    52262 NO 08-NOV-12 08-NOV-12
    52263 NO 08-NOV-12 08-NOV-12
    52264 NO 08-NOV-12 08-NOV-12
    52265 NO 08-NOV-12 08-NOV-12
    52266 NO 08-NOV-12 08-NOV-12
    52267 NO 08-NOV-12 08-NOV-12
    52268 NO 08-NOV-12 08-NOV-12
    52269 NO 08-NOV-12 08-NOV-12
    52270 NO 08-NOV-12 08-NOV-12
    SEQUENCE# APP FIRST_TIM NEXT_TIME
    52271 NO 08-NOV-12 08-NOV-12
    52272 NO 08-NOV-12 08-NOV-12
    52273 NO 08-NOV-12 08-NOV-12
    52274 NO 08-NOV-12 08-NOV-12
    52275 NO 08-NOV-12 08-NOV-12
    52276 NO 08-NOV-12 08-NOV-12
    52277 NO 08-NOV-12 08-NOV-12
    52278 NO 08-NOV-12 08-NOV-12
    52279 NO 08-NOV-12 08-NOV-12
    52280 NO 08-NOV-12 08-NOV-12
    52281 NO 08-NOV-12 08-NOV-12
    SEQUENCE# APP FIRST_TIM NEXT_TIME
    52282 NO 08-NOV-12 08-NOV-12
    52283 NO 08-NOV-12 08-NOV-12
    52284 NO 08-NOV-12 08-NOV-12
    52285 NO 08-NOV-12 08-NOV-12
    52286 NO 08-NOV-12 08-NOV-12
    52287 NO 08-NOV-12 08-NOV-12
    52288 NO 08-NOV-12 08-NOV-12
    52289 NO 08-NOV-12 08-NOV-12
    52290 NO 08-NOV-12 08-NOV-12
    52291 NO 08-NOV-12 08-NOV-12
    52292 NO 08-NOV-12 08-NOV-12
    SEQUENCE# APP FIRST_TIM NEXT_TIME
    52293 NO 08-NOV-12 08-NOV-12
    Thread Last Sequence Received Last Sequence Applied Difference
    1 52293 52223 70
    SQL> archive log list
    Database log mode Archive Mode
    Automatic archival Enabled
    Archive destination E:\oracle\P01\oraarch\P01arch
    Oldest online log sequence 52291
    Next log sequence to archive 0
    Current log sequence 52294
    SQL> select process,status,sequence# from v$managed_standby;
    PROCESS STATUS SEQUENCE#
    ARCH CLOSING 52292
    ARCH CLOSING 52293
    ARCH CLOSING 52289
    ARCH CLOSING 52290
    ARCH CLOSING 52291
    MRP0 WAIT_FOR_LOG 52224
    RFS IDLE 52294
    RFS IDLE 0
    RFS IDLE 0
    RFS IDLE 52224
    The MRP0 process is in WAIT_FOR_LOG. I think its hanged .Please let me know what i need to do in order to bring both primary ad secondary in sync.
    Please let me know how to do it manually and what other options are available for me.
    Thanks
    Meena

    Hi mseberg,
    I got your point , but I have a got some query after firing the commands given by you.I can see before 27 Oct the Primary DB logs are in NO whereas the secondary aare in YES. But after 27 Oct my log are not getting applied on secondary as well. So i this somethign alarming for me and my database .If so then what steps i need to take to prevent it.
    SQL> select sequence#,applied,first_time,next_time,dest_id from v$archived_log;
    52008 NO 27-OCT-12 27-OCT-12 1
    52009 YES 27-OCT-12 27-OCT-12 2
    52009 NO 27-OCT-12 27-OCT-12 1
    52010 NO 27-OCT-12 27-OCT-12 1
    52010 YES 27-OCT-12 27-OCT-12 2
    52011 YES 27-OCT-12 27-OCT-12 2
    52011 NO 27-OCT-12 27-OCT-12 1
    52012 NO 27-OCT-12 27-OCT-12 1
    52012 NO 27-OCT-12 27-OCT-12 2
    52013 NO 27-OCT-12 27-OCT-12 1
    52013 NO 27-OCT-12 27-OCT-12 2
    52014 NO 27-OCT-12 27-OCT-12 2
    52014 NO 27-OCT-12 27-OCT-12 1
    52015 NO 27-OCT-12 27-OCT-12 1
    52015 NO 27-OCT-12 27-OCT-12 2
    52016 NO 27-OCT-12 27-OCT-12 1
    52016 NO 27-OCT-12 27-OCT-12 2
    52017 NO 27-OCT-12 27-OCT-12 2
    52017 NO 27-OCT-12 27-OCT-12 1
    52018 NO 27-OCT-12 27-OCT-12 1
    52018 NO 27-OCT-12 27-OCT-12 2
    select name as standby,sequence#,applied,completion_time from v$archived_log where dest_id=2 and next_time > sysdate -1 order by sequence#;
    STANDBY
    SEQUENCE# APP COMPLETIO
    P01_DR
    52414 NO 15-NOV-12
    P01_DR
    52415 NO 15-NOV-12
    P01_DR
    52416 NO 15-NOV-12
    STANDBY
    SEQUENCE# APP COMPLETIO
    P01_DR
    52418 NO 15-NOV-12
    P01_DR
    52419 NO 15-NOV-12
    P01_DR
    52420 NO 15-NOV-12
    STANDBY
    SEQUENCE# APP COMPLETIO
    P01_DR
    52421 NO 15-NOV-12
    P01_DR
    52422 NO 15-NOV-12
    P01_DR
    52423 NO 15-NOV-12
    STANDBY
    SEQUENCE# APP COMPLETIO
    P01_DR
    52424 NO 15-NOV-12
    P01_DR
    52425 NO 15-NOV-12
    P01_DR
    52426 NO 15-NOV-12
    STANDBY
    SEQUENCE# APP COMPLETIO
    P01_DR
    52427 NO 15-NOV-12
    P01_DR
    52428 NO 15-NOV-12
    P01_DR
    52429 NO 15-NOV-12
    STANDBY
    SEQUENCE# APP COMPLETIO
    P01_DR
    52430 NO 15-NOV-12
    P01_DR
    52431 NO 15-NOV-12
    P01_DR
    52432 NO 16-NOV-12
    18 rows selected.
    Thanks
    Meena

  • Audio out of sync

    I have 2 Xl2s. Both running at the same time taping a performance. One is using tape, the other a HD recorder. When I do the capture of both streams, I am unable to sync the audio and video. Something I have done many times before with other cameras. The offending capture is the one that came from tape.
    I am shooting 60i, 16:9, standard 16 bit audio, everything default. The weird thing is is that the audio is out of sync for its own video clip! And it seems to get futher out of sync the farther in the clip I play.
    I imported as DV 3x2 anamorphic using a Sony DSR 11 deck.
    Is my camera tweaked?

    Read the bit at the end about unlocked audio.
    http://www.cyberfilmschool.com/learn/article_detail.aspx?id=96
    This article claims FCP has a switch to deal with the 48 KHz vs 48.009 KHz. I don't know it.
    http://www.chip-india.com/dcquery.php?qid=9360
    and more good information here...
    http://www.geniusdv.com/avid-fcp//read.php?1,1737,2024
    There are kluge work arounds, but they are not ideal. When I have to deal with this stuff I keep my captures short, which doesn't seem to be an option for you.
    Another trick is the change the speed of the audio very slightly to compensate for the drift.
    I hope all this helps. I was burned by this with a project four years ago, so I know how frustrating it is.
    Tom

  • Audio out of sync when playing HD content

    Hey
    I've got an issue with the audio gets out of sync when playing some HD content. I've tried to make sure the video is stored on the Apple TV so it can't be the network connection.
    I've also tried a full reset of the unit, but still no luck.
    But it's all video clips that has this problem. Even though they encoded the same and so on, some videos audio get out of synced and some don't.
    Also have a problem with m4v files locking the ATV (and iTunes for that matter), but renaming it to a mp4 file seems to solve it. But if someone has a fix for that as well I'd much appreciate it.
    Many thanks in advance,
    Jeaz
    EDIT: I have tried to use component cables instead of HDMI, but the problem remains. Of course also tested the video on my Mac and no problems. A quick pause and resume usually solves it, but only for a minute or so.
    Message was edited by: MrJeaz

    What sort of specification is the video content? Is spec too high for AppleTV.
    It may be that it's some kind of bug in AppleTV's playback, that the Mac does not exhibit, or an issue with encoding that causes a problem only on AppleTV.
    If you are encoding video and using same as source for the frame rate, it may be better in some cases trying explicitly to specify the frame rate required in case automatic frame rate conversion is introducing some kind of timing issue. Test a short clip to see.

  • MPEG4 video from imovie is sluggish and audio out of sync

    Hi y'all,
    I am new to this. So I need some hand holding here. I am working with video that was exported in MPEG4 video from imovie on a mac.
    The Camera I used is a Sony FX7 HD camera with SD tape.
    So Now I am trying to edit the video using Premiere Pro CS3 creative suite.
    Import into CS3 is fine. Playing the imported video in the source monitor is fine as well. All looks well.
    However, here are the challenges I am having:
    1. When I try to play it in the Program monitor its very sluggish. Audio plays fine but picture lags behind.
    2. And once I edit the the video and try to export it as flash video or as a windows media, the video and audio are out of sync.
    The video is choppy as well.
    Details: source video is 720x480 and trying to export to 320x240
    My project details are:
    DV-NTSC standard 48khz
    Video is 10 min long

    OK, not my choice of workflows, but... I assume that the MP4's are H.264 encoded. There are many of these. Three common ones are Lead, MainConcept and Apple. Some find that one works better than the others. These are not the ONLY versions, but are common. You might want to explore others, depending on which one you have installed. G-Spot can tell you which you have.
    Next, you can Render your Timeline, to get things as smooth as possible.
    Note that the MP4 files are heavily compressed already. Quality has been lost, and there is nothing that can be done about that. When you Export to, say DVD, you will recompress that material, and loose even more.
    In the future, have your Mac-person do the Capture to .MOV [Animation CODEC]. Or, do it yourself to DV-AVI Type II w/ 48KHz 16-bit PCM/WAV Audio.
    Not sure of any other ways to get the MP4's playing more smoothly. Much will depend on both your CPU and on your system's I/O sub-system, i.e. your HDD's, their size, speed, controller type and how they are utilized.
    Good luck,
    Hunt

  • Audio out of sync with video in timeline SOLVED

    The audio and video are in sync when playing .MP4 video (but may apply to other video files) in the Premiere Pro viewer and Windows Media Player and VLC however, as soon as you drag the clip into the timeline it goes out of sync. Since it took so much time for me to figure out how to get around this problem I wanted to share this, ESPECIALLY For all the people who are semi Adobe Premiere noobs (with no disrespect, I fall into this category) at this and google isn't helping to figure out why this is happening I'll give you the easy fix.  For all the people in this forum who are going to ask the detailed information, codecs, etc.  I'll give that as well.
    FOR THE NOOBS:
    All the information I've read online all seems to point that the timeline sometimes doesn't like certain audio contained in the video. It conforms incorrectly, etc. Personally, it doesn't make any sense to me. Forget all that.. you just want to get on with your project.. to heck with the details, you're tired of googling.  Here's the solution I found.  Extracting the audio from the problematic video file outside of Adobe Premiere.  I use avconv, because it's free, open source, and you won't lose audio quality.  Then linking that audio with the video in Adobe Premiere.
    First if you are using a windows 32 bit computer download avconv here: http://win32.libav.org/win32/
    If you are using a windows 64 bit computer download avconv here: http://win32.libav.org/win64/
    go to the bottom of the page and click on the newest date version.  DISCLAIMER: This is open source software. It's free.  I didn't make it so I'm not trying to sell you anything.
    It's a zip file so you will need to use winzip or 7zip to uncompress it.  You can't just click on the installer. You can uncompress and save the program wherever you want on your computer.  Say you didn't pay attention and you automatically saved it in the default spot in your downloads folder.  The place you'd find the program might look like this if you're on a 64 bit computer: 
    C:\Users\youruseraccountname\Downloads\libav-9.7-win64  If you're on a 32 bit computer it will probably look like this C:\Users\youruseraccountname\Downloads\libav-9.7-win32
    Just make sure you know where it is located and copy it down in notepad.  If you can't find it, do a search on your C: drive for avconv  .For this forum thread we will assume you have saved avconv in the downloads folder and you're on a 64 bit computer. 
    Click on the Windows key on your keyboard. Type in Run and then press enter. Type in CMD and press enter.  This will open up windows command line. Don't worry, it's not as scary as you think.
    Now hold down the Windows key and press E. This will open up a windows explorer window for you to find the video file you are having issues with in Adobe Premiere.  Once you have found the file, copy the location of the file.  So..  if your file was here:  c:\Users\youruseraccount\videos\yourvideo.mp4 you would see that at the top of the windows explorer in what's called the address bar.  Copy that.  Paste it into your notepad.
    Now switch back to the windows command line window.  Now I'm going to have you type a command into the windows command line but before you do I want you to understand how to type it in.
    #1. Do you know the exact path (location on your computer) where you installed avconv?
    #2. Did you copy the exact path (location on your computer) where you have your video file?
    If so..  type in the command below but change it with the information you have above
    C:\Users\youruseraccountname\Downloads\libav-9.7-win64\usr\bin\avconv.exe -i "c:\Users\youruseraccount\videos\yourvideo.mp4" -vn -qscale 1 "c:\Users\youruseraccount\videos\yourvideo.wav"
    So let's break it down so you understand and help troubleshoot any issues you may have.
    C:\Users\youruseraccountname\Downloads\libav-9.7-win64  this is the example location we said we installed avconv.  The actual avconv.exe program is located inside that folder so the full path would be this: C:\Users\youruseraccountname\Downloads\libav-9.7-win64\usr\bin\avconv.exe
    -i just tells avconv what the input file is.
    "c:\Users\youruseraccount\videos\yourvideo.mp4" is the path (location on your computer) where your video file is.
    -vn just tells avconv you only want to extract audio from the video
    -qscale 1 just tells avconv you want the best quality
    "c:\Users\youruseraccount\videos\yourvideo.wav" just tells avconv the path (location on your computer) and the name you want to give the audio file you're taking from the video.  This will save the audio wav file to the path (location on your computer) where the problematic video file is saved.
    Once you have the audio wav file import it into Adobe Premiere.  In the timeline, unlink the audio from the mp4 (or whatever video file you have).  Highlight the now unlinked mp4 audio and delete the audio.  Then bring your audio wav file you created using avconv and bring it onto the timeline at the start of the video. Now link it.  Hopefully that did the trick.
    If you have any questions regarding the command line or installing avconv please feel free to comment and ask.  I'm pretty good at windows command line and can probably help identify what the issue is.
    FOR THE INFORMED PREMIERE PRO USERS:
    Here are the details of the problematic video file that I had this issue with.  This is from avconv:
      Metadata:
        major_brand     : mp42
        minor_version   : 1
        compatible_brands: mp42mp41
        creation_time   : 2013-05-12 11:45:32
      Duration: 01:58:28.24, start: 0.000000, bitrate: 3256 kb/s
        Stream #0.0(eng): Video: h264 (Constrained Baseline), yuv420p, 1280x720, 2997 kb/s, 25 fps, 25 tbr, 25 tbn
        Metadata:
          creation_time   : 2013-05-12 11:45:32
        Stream #0.1(eng): Audio: aac, 48000 Hz, stereo, fltp, 256 kb/s
        Metadata:
          creation_time   : 2013-05-12 11:45:32
    I don't know the type make/model video camera that was used or if it was converted before being given to me. This is just what i had to work with and the solution I found to fix it.

    if you are using a windows 32 bit computer
    Then you won't be using anything above Premiere Pro CS4, and this thread would be in the wrong section.
    By the way, the process is significantly easier using something like Xvid4PSP, which can strip out the audio using a fairly easy to understand GUI, as wel as convert those oddball videos into something PP can handle.
    http://www.videohelp.com/tools/XviD4PSP  (Use version 5.)

  • Out of sync audio when trying to capture from digital 8 camera to quicktime, please help

    Just trying to capture hi 8 tapes using a sony digital 8 dcr-trv355e pal into quicktime;
    great clear video but  audio becomes out of sync like a bad kungfu movie,
    contacted apple they tried to help, but they dont really understand issue
    there are lots of people out there that are trying to digitise old analog video;
    I have fcpx and imovie they both play the old video via  the digital 8 camera but cannot capture;
    that is why using quicktime; thanks!!

    Yes i think its something to do ith the fact its a wmv file, when i use mpeg footage it exports fine.
    basically, no matter how long the video, the video is out of sync...its weird
    i've decided the best thing to do is leave quicktime and export using windows media instead, that seems to give me a better looking picture witha small file size anyway
    thanks for your help though!

  • Flash Player doesn't play smoothly and out of sync in full screen

    Hello! Everyone
    The flash player (11.2.202.235) does not play smoothly and in full screen audio and vidoe is out of sync.  I didn't use to have any problem at all, it only started about two weeks ago and since then despite trying various things (i.e. disabling hardware excelration, uninstalling & reinstalling, trying various browsers etc.) has not resolved the issue.  I don't know why it has suddenly stopped playing smoothly as I have not installed any software recently which might have cuased this. 
    I am using Windows XP (service pack3) and have dual partion with dual operating system (both XP).  There is the same problem on both operarting system and flash player won't run smoothly on either of them.  Although my computer and graphics card is quite old but the downloaded movies/DVD playback is fine even in full screen.  It runs smoothly and audio&video is in sync so I don't think it could my the graphics card. 
    As I mentioned I have tried all the browsers but without any luck.  The BBC iplayer plays ok most of the time if not in full screen but as soon as you make it full screen the vidoe is more like a slide show and very jittery and audio&video gets out of sync.  Same with youtube vidoes, they play ok when not in full screen but the video in full screen does not play smoothly and audio&vidoes gets out of sync.  However the ITV player & Channel 4 content on 4OD does not even play smoothly when not in full screen and the video&audio is out of sync all the time. 
    It would be really helpful if anyone can suggest anything to resolve this issue as I have not been able to find anything on the internet to solve the problem and its driving me up the wall.  Although I have tried to include as much details as I could think of so please let me know if I have missed any details that could be crucial in order to identify the problem.
    Thank you very much for reading this and taking the time to reply and your feedback. 
    Below is the DxDiag report for my laptop:
    Time of this report: 4/22/2012, 00:15:58      
    Machine name: TIMES-LAPTOP   
    Operating System: Windows XP Professional (5.1, Build 2600) Service Pack 3 (2600.xpsp_sp3_gdr.111025-1629)           
    Language: English (Regional Setting: English)
    System Manufacturer: TimeComputers       
    System Model: VT8372               
    BIOS: Insyde Software MobilePRO BIOS Version 4.00.01          
    Processor: mobile AMD Athlon(tm) XP 2000+,  MMX,  3DNow, ~1.7GHz             
    Memory: 1248MB RAM          
    Page File: 809MB used, 2790MB available        
    Windows Dir: C:\WINDOWS    
    DirectX Version: DirectX 9.0c (4.09.0000.0904) DX
    Setup Parameters: Not found     
    DxDiag Version: 5.03.2600.5512 32bit Unicode 
    ------------ DxDiag Notes ------------  
    DirectX Files Tab: No problems found.      
    Display Tab 1: No problems found.        
    Sound Tab 1: No problems found.          
    Music Tab: No problems found.          
    Input Tab: No problems found.        
    Network Tab: No problems found. 
    -------------------- DirectX Debug Levels --------------------
    Direct3D:    0/4 (n/a)
    DirectDraw:  0/4 (retail)
    DirectInput: 0/5 (n/a)
    DirectMusic: 0/5 (n/a)
    DirectPlay:  0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow:  0/6 (retail) 
    --------------- Display Devices ---------------        
    Card name: S3 Graphics ProSavageDDR               
    Manufacturer: S3 Graphics Co., Ltd.        
    Chip type: S3 ProSavage DDR         
    DAC type: S3 SDAC       
    Device Key: Enum\PCI\VEN_5333&DEV_8D04&SUBSYS_83751071&REV_00   
    Display Memory: 32.0 MB     
    Current Mode: 1024 x 768 (32 bit) (60Hz)          
    Monitor: Digital Flat Panel (1024x768)   Monitor Max Res:       
    Driver Name: s3gnb.dll   
    Driver Version: 6.14.0010.0025 (English)      
    DDI Version: 9 (or higher)
    Driver Attributes: Final Retail 
    Driver Date/Size: 3/2/2004 14:02:26, 402048 bytes      
    WHQL Logo'd: Yes   WHQL Date Stamp: n/a              
    VDD: n/a         
    Mini VDD: s3gnbm.sys    
    Mini VDD Date: 3/2/2004 14:02:30, 167040 bytes
    Device Identifier: {D7B75DD3-CE44-11CF-D873-7FA3A1C2CB35}        
    Vendor ID: 0x5333        
    Device ID: 0x8D04        
    SubSys ID: 0x83751071      
    Revision ID: 0x0000      
    Revision ID: 0x0000      
    Video Accel: ModeMPEG2_C ModeMPEG2_A ModeMPEG2_D  
    Deinterlace Caps: n/a         
    Registry: OK     
    DDraw Status: Enabled       
    D3D Status: Enabled       
    AGP Status: Enabled DDraw
    Test Result: Not run 
    D3D7 Test Result: Not run 
    D3D8 Test Result: Not run 
    D3D9 Test Result: Not run 
    ------------- Sound Devices -------------            
    Description: Vinyl AC'97 Audio (WAVE) 
    Default Sound Playback: Yes 
    Default Voice Playback: Yes            
    Hardware ID: PCI\VEN_1106&DEV_3059&SUBSYS_83751071&REV_50        
    Manufacturer ID: 1             
    Product ID: 100                   
    Type: WDM            
    Driver Name: vinyl97.sys         
    Driver Version: 6.14.0001.4170 (English)      
    Driver Attributes: Final Retail            
    WHQL Logo'd: Yes          
    Date and Size: 8/10/2006 07:32:14, 204672 bytes            
    Other Files:         
    Driver Provider: VIA Technologies, Inc.         
    HW Accel Level: Full              
    Cap Flags: 0xF5F    
    Min/Max Sample Rate: 8000, 48000 Static/Strm
    HW Mix Bufs: 1, 0  Static/Strm
    HW 3D Bufs: 0, 0              
    HW Memory: 0       
    Voice Management: No  EAX(tm) 2.0
    Listen/Src: No, No    I3DL2(tm)
    Listen/Src: No, No Sensaura(tm)
    ZoomFX(tm): No               
    Registry: OK      
    Sound Test Result: Not run 
    --------------------- Sound Capture Devices ---------------------            
    Description: Vinyl AC'97 Audio (WAVE)  
    Default Sound Capture: Yes  
    Default Voice Capture: Yes            
    Driver Name: vinyl97.sys         
    Driver Version: 6.14.0001.4170 (English)      
    Driver Attributes: Final Retail          
    Date and Size: 8/10/2006 07:32:14, 204672 bytes              
    Cap Flags: 0x41           
    Format Flags: 0xFFF 
    ----------- DirectMusic -----------        
    DLS Path: C:\WINDOWS\SYSTEM32\drivers\GM.DLS     
    DLS Version: 1.00.0016.0002    
    Acceleration: n/a           
    Ports: Microsoft Synthesizer, Software (Not Kernel Mode), Output, DLS, Internal, Default Port                  
    Vinyl AC'97 Audio (WAVE), Software (Kernel Mode), Output, DLS, Internal                  
    Microsoft MIDI Mapper [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal                  
    Microsoft GS Wavetable SW Synth [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal        
    Registry: OK     
    Test Result: Not run 
    ------------------- DirectInput Devices -------------------      
    Device Name: Mouse         
    Attached: 1    
    Controller ID: n/a
    Vendor/Product ID: n/a        
    FF Driver: n/a       
    Device Name: Keyboard         
    Attached: 1    
    Controller ID: n/a
    Vendor/Product ID: n/a        
    FF Driver: n/a 
    Poll w/ Interrupt: No         
    Registry: OK 
    ----------- USB Devices -----------
    + USB Root Hub |
    Vendor/Product ID: 0x1106, 0x3038 |
    Matching Device ID: usb\root_hub |
    Service: usbhub |
    Driver: usbhub.sys, 4/13/2008 19:45:37, 59520 bytes |
    Driver: usbd.sys, 8/23/2001 13:00:00, 4736 bytes

    Would you mind opening a new bug on this at bugbase.adobe.com?  Please include your dxdiag report, a specific URL and a link to this forum thread.
    In the meantime, you might want to try our 11.3 beta or rollback to a previous version of the player to see if that resolves the problem.
    Thanks,
    Chris

Maybe you are looking for

  • Not getting all the fields of MARA by using DDIF_NAMETAB_GET

    Hi, Please to solve the below issue. I am using the DDIF_NAMETAB_GET FM and trying to all the fields of MARA tabel but i getting only 27 records ie. 27 fields. when i look at DD03L i can 220 records but i am not sure why the output only shows 27recor

  • DOESN'T OPEN?

    i added XI IP to sap logon pad still it doesnt open y?

  • How to load external photo gallery in swf file

    hello! i've been using flash catalyst beta to create a simple 100% flash portfolio site. you can view the test here: http://remgriff.110mb.com/ my problem is that i want to link a button from the portfolio page to an external swf file (or html, both

  • How to Download a batch of files without having to click on each file

    I installed download helper and when i watch a video there are alot of files playing how do i download all of them without having to click on every file in the helper drop down box

  • Iphone 5C went black

    Slowly but surely when my iphone drpped(not too far away I may add) it went black and know I can't do anything. People call me but I can't answer or turn it off. What does this mean?