Reconfigure the Oracle streams incase of Server move from 192 to 191

Hi All,
We have bi directioanl oracle streams setup between two databases.
Recently, We have moved our server from cin192 to cin191. After server moved we checked the all the streams process.
Capture process shows Wating for Dictionary Redo First SCN XXXXXXXXX on both the database.
When i checked these SCN ,i got cin192 archive log.
Can you please help how can i resolve these issue..
Do we need to reconfigure the streams or we can assign new SCN to capture process without dropping anything with cin191 server archive log file...
Means , How to point new server archive log file to capture process..
Any help would be appreciated...
It's urgent...Plzzzzzzzzzz Help.
Thanks,
Singh

Hi Singh,
If I would know what cin191 and cin192 are, I would probably be able to redirect you to the right forum.
If you are looking for Oracle streams, I suggest you to try the Database - General forum: General Database Discussions
If is Oracle replication what you are looking for, please check here: Replication
This is the Berkeley DB High Availability forum ( http://www.oracle.com/technology/documentation/berkeley-db/db/ref/rep/intro.html )
Bogdan

Similar Messages

  • Is there a way to keep the Brush HUD up as I move from image to image?

    I did a large set of portraits and would like to keep the Brush HUD up as I move from image to image making edits.
    Being able to do this would save a little time and make the edits a little faster.
    Thanks

    Not that I've found.  Some brush HUDs stay "up" when a different image is selected (crop, retouch), but most do not.
    I suggest assigning easy shortcuts to any of the Quick Brushes you use regularly, and launching them from the keyboard.
    This is also an instance where a multi-button programable mouse could pay for itself.  Assign those shortcuts to some of the mouse buttons.  (I use and recommend the Razer Naga; surely there are others, and newer ones.  The increased resolution alone is worth the price -- but all that is off topic.)

  • Is there a way to count the number of times an array moves from positive to negative?

    I have an array of values, and I need to find the number of times that the array changes signs (from positive to negative, or vice versa). In other words from a graphical standpoint, how many times a certain line crosses the x-axis. Counting the number of times the array equals zero does not help however, because the array does not always equal exactly zero when it crosses the axis (ie, the points could move from .1 to -.1).
    Thanks for you help. Feel free to email me at [email protected] I only have lv 5.1.1 so if you attach any files, they cannot be version 6.0.

    Attached is a VI showing the # of Pos and Neg numbers in an array, with 0 considered as non-Pos. It is easily modifiable to other parameters - including using the X-axis value as your compare point versus only Zero.
    This is a modified VI from LV (Separate Array.vi)
    Compare this with your other responses to find the best fit.
    Doug
    Attachments:
    arraysizesposneg.vi ‏40 KB

  • What is the simplest way to make a movie from BufferedImages?

    I have a 3d rendered animation from which I can grab BufferedImages of each frame. What is the simplest way I can create a movie from these images?
    I've seen the JpegImagesToMovie.java file and not only is it suprisingly overcomplicated, it requires me to change the code so that I can get images from memory rather than from files.
    Is there some simple way of creating a movie which requires a few statements? I'm also prepared to use QuickTime for Java. I don't care about the format, since I can just use any video converter to convert it to my desired video format.

    I recently came up with a simplified JpegImagesToMovie program. It generates QuickTime movies with a single video track output as a file. Input is a series of jpegs (currently as a list of file names, but easily modified to a take any form of jpeg data.) Since the compression used by the movie is JPEG, if you have an uncompressed image buffer, you'll need to convert that into jpeg data bytes with some quality setting. (Since its a movie file, go with something low if you have a lot of similar images.) This will even run without a full install of jmf--no native code is called (as far as I could tell..)
    Here is the source code, sorry about the formatting!
    import java.awt.Dimension;
    import java.io.File;
    import java.io.IOException;
    import java.io.RandomAccessFile;
    import java.net.URL;
    import java.util.Vector;
    import javax.media.Buffer;
    import javax.media.Format;
    import javax.media.MediaLocator;
    import javax.media.format.VideoFormat;
    import javax.media.protocol.ContentDescriptor;
    import javax.media.protocol.FileTypeDescriptor;
    import com.sun.media.multiplexer.video.QuicktimeMux;
    * This program takes a list of JPEG image files and converts them into a
    * QuickTime movie.
    * This was based on Sun's JMF Sample Code JpegImagesToMovie.java 1.3 01/03/13
    * This code is an attempt to reduce the complexity to demonstrate a very basic
    * JPEG file list to movie generator. It does not use a Manager or Processor
    * class, so it doesn't need to implement any event listening classes. One
    * advantage of this simplified class is that you can just link it with the
    * jvm.jar file. (you might also need to track down the com.ms.security library
    * stubs, use google. You'll need PermissionID.java and PolicyEngine.java.)
    * I tried to get it to generate AVI files without success.
    * These output files are could use further compression.
    * A Vector of jpeg image paths was one way to do this--the appropriate
    * methods can be overwritten to grab images from another source
    * --zip file, http, etc.
    * - Brad Lowe; Custom7; NuSpectra; 2/10/2005
    * The existing Copyright from Sun follows.
    * Copyright (c) 1999-2001 Sun Microsystems, Inc. All Rights Reserved.
    * Sun grants you ("Licensee") a non-exclusive, royalty free, license to use,
    * modify and redistribute this software in source and binary code form,
    * provided that i) this copyright notice and license appear on all copies of
    * the software; and ii) Licensee does not utilize the software in a manner
    * which is disparaging to Sun.
    * This software is provided "AS IS," without a warranty of any kind. ALL
    * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
    * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
    * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
    * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
    * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
    * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
    * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
    * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
    * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY
    * OF SUCH DAMAGES.
    * This software is not designed or intended for use in on-line control of
    * aircraft, air traffic, aircraft navigation or aircraft communications; or in
    * the design, construction, operation or maintenance of any nuclear facility.
    * Licensee represents and warrants that it will not use or redistribute the
    * Software for such purposes.
    public class SimpleMovie
    Vector images; // jpeg image file path list
    VideoFormat format; // format of movie to be created..
    // Sample code.
    public static void main(String args[])
    try
    // change imageDir to the location of a directory
    // of images to convert to a movie;
    String imageDir = "images";
    File d = new File(imageDir);
    SimpleMovie imageToMovie = new SimpleMovie();
    // change width, height, and framerate!
    // Excercise: Read width and height of first image and use that.
    imageToMovie.init(320, 240, 10.0f);
    imageToMovie.setFiles(d);
    File dest = new File("simple.mov");
    imageToMovie.createMovie(dest);
    System.err.println("Created movie " + dest.getAbsolutePath() + " "
    + dest.length() + " bytes.");
    } catch (Exception e)
    System.out.println(e.toString());
    e.printStackTrace();
    // return jpeg image bytes of image zIndex (zero-based index)
    public byte[] getImageBytes(int zIndex) throws IOException
    if (images == null)
    return null;
    if (zIndex >= images.size())
    return null;
    String imageFile = (String) images.elementAt(zIndex);
    // Open a random access file for the next image.
    RandomAccessFile raFile = new RandomAccessFile(imageFile, "r");
    byte data[] = new byte[(int) raFile.length()];
    raFile.readFully(data);
    raFile.close();
    return data;
    // Call this before converting a movie;
    // Use movie width, height;
    public void init(int width, int height, float frameRate)
    format = new VideoFormat(VideoFormat.JPEG,
    new Dimension(width, height), Format.NOT_SPECIFIED,
    Format.byteArray, frameRate);
    // Set up the files to process
    public void setFiles(Vector inFiles)
    images = inFiles;
    // point converter to jpeg directory. Only does one level,
    // but could recurse, but then sorting would be interesting..
    public void setFiles(File dir) throws Exception
    if (dir.isDirectory())
    if (images == null)
    images = new Vector();
    String l[] = dir.list();
    for (int x = 0; x < l.length; x++)
    if (l[x].toLowerCase().endsWith(".jpg"))
    File f = new File(dir, l[x]);
    images.addElement(f.getAbsolutePath());
    // Crank out the movie file.
    public void createMovie(File out) throws Exception
    if (format == null)
    throw new Exception("Call init() first.");
    String name = out.getAbsolutePath();
    QuicktimeMux mux = null; // AVI not working, otherwise would use
    // BasicMux
    if (out.getPath().endsWith(".mov"))
    mux = new QuicktimeMux();
    mux.setContentDescriptor(new ContentDescriptor(
    FileTypeDescriptor.QUICKTIME));
    } else
    throw new Exception(
    "bad movie file extension. Only .mov supported.");
    // create dest file media locator.
    // This sample assumes writing a QT movie to a file.
    MediaLocator ml = new MediaLocator(new URL("file:"
    + out.getAbsolutePath()));
    com.sun.media.datasink.file.Handler dataSink = new com.sun.media.datasink.file.Handler();
    dataSink.setSource(mux.getDataOutput()); // associate file with mux
    dataSink.setOutputLocator(ml);
    dataSink.open();
    dataSink.start();
    // video only in this sample.
    mux.setNumTracks(1);
    // JPEGFormat was the only kind I got working.
    mux.setInputFormat(format, 0);
    mux.open();
    // Each jpeg goes in a Buffer.
    // When done, buffer must contain EOM flag (and zero length data?).
    Buffer buffer = new Buffer();
    for (int x = 0;; x++)
    read(x, buffer); // read in next file. x is zero index
    mux.doProcess(buffer, 0);
    if (buffer.isEOM())
    break;
    mux.close();
    // close it up
    dataSink.close();
    // Read jpeg image into Buffer
    // id is zero based index of file to get.
    // Always starts at zero and increments by 1
    // Buffer is a jmf structure
    public void read(int id, Buffer buf) throws IOException
    byte b[] = getImageBytes(id);
    if (b == null)
    System.err.println("Done reading all images.");
    // We are done. Set EndOfMedia.
    buf.setEOM(true);
    buf.setOffset(0);
    buf.setLength(0);
    } else
    buf.setData(b);
    buf.setOffset(0);
    buf.setLength(b.length);
    buf.setFormat(format);
    buf.setFlags(buf.getFlags() | Buffer.FLAG_KEY_FRAME);
    }

  • Why did the Apple TV update remove "home movies" from the computer option in Apple tv?

    AApple TV auto updated.  22 sept 2014.  Most of the movies I have on my iMac were under itunes as "home movies".  The Apple TV update removed the ability to see home movies in the "computer" option in Apple tv.   I can see them on my iMac, but no longer have access thru my Apple tv.  I can still see the few that are physically in "movies" in iTunes, but the Apple TV will now only show them.  Thanks

    Hello bernsteinr,
    It sounds like an issue with Home Sharing. Check out the article below for more information on getting Home Sharing working again so you can see all the movies that you have on your iMac show up on your Apple TV.
    Troubleshooting Home Sharing
    http://support.apple.com/kb/ts2972
    Regards,
    -Norm G. 

  • I'm based in the UK. Can I purchase movies from iTunes on my Mac then watch them on Apple TV?

    As I'm based in the UK I can't purchase movies on the Apple TV 3. If, however, I purchased a movie on my Mac or iOS device, would I then be able to watch it through the Apple TV?

    If you buy movies on iOS devices make sure you transfer them to iTunes to allow you to backup - until we in UK get movies in the cloud this is pretty important.
    To be honest I only purchase movies in itunes (or on the original AppleTV which allows it as well as music browsing/purchase and itunes LP/Extras playback!) as I'm useless about syncing iOS devices.
    AC

  • Please help me to setup the oracle streams in 10gR2

    what are the manadary parameters to set in the init.ora file in oracle ( both source and target database)

    Do not forget to set GLOBAL_NAMES parameter to true (default value is false). This is very important because Streams configuration uses database links.
    Very important!!! Configure archive log parameters
    Anyway look at "Setting Initialization Parameters Relevant to Streams" section in
    http://oracleheva1.oracle.com/docs/cd/B19306_01/server.102/b14229/strms_mprep.htm#sthref901
    Regards,
    Mike

  • Panther server, move from single drive to RAID 1

    Hello,
    I am trying to find out if this can be done on a system (Xserve G3) with Panther server running on it. I know this is old, but right now the school will not upgrade the server.
    It has the original 60GB hard drive and is running out of space. I would like to replace it with two 500GB HD's using software RAID.
    In Panther, can you clone or CCC the OS and move it to a RAID1 from a single drive, or do we need to install and configure a new installation on the RAID set?
    Any help would be greatly appreciated.
    Mike

    There were major changes in Disk format from 10.3 Panther to 10.4 Tiger, especially in RAID drives. I believe the 10.4 Server Installer converts your Boot RAID (if applicable) but does not deal with your data-only RAID drives. In the case you are proposing, the upgrade from 10.3 to 10.4 may require you to copy your data-only RAID drives yet again.
    My older SCSI RAID drives which ran fine in 10.3 were not recognized as having a valid Driver (of any description) in 10.4. The old drives could not be mounted, and therefore could not be "promoted" to 10.4 RAID Drives. Luckily, RAID tools in 10.4 Tiger are much improved.
    Using only one additional full-size drive, I was able to move the array to a spare Mac, install 10.3 to get them recognized, then Network-mount and copy them onto a single-member RAID array in 10.4 Server. Creating a single member of a Mirrored Array required some fancy command-line work in 10.4 Server.
    The bottom line: If you can upgrade to 10.4 Server first, it will be much less work (and much less risk).

  • If I have many tabs open how do I move from one tab to another using the keyboard? For example to move from one window to another we have to hit alt+tab keys. How does it work for Tabs?

    Thanks

    Hi,
    To move to the next tab it's '''Ctrl''' + '''Tab''' or '''Ctrl''' + '''Pg Dn''' (Page Down). To go to the previous tabs (reverse order) it's '''Ctrl''' + '''Shift''' + '''Tab''' or '''Ctrl''' + '''Pg Up''' (Page Up) keys. More about this and other keyboard shortcuts [https://support.mozilla.com/en-US/kb/Keyboard%20shortcuts here.]

  • What is the best way to create VR movies from a PhotoShop panorama? QTPro?

    I found that I have the most success making panoramas using PhotoShop rather than dedicated panorama programs like Panorama Maker. Now that I made a panorama I like in PhotoShop can I use Quicktime Pro to turn it into a VR that someone can navigate? I was hoping that PhotoShop could handle the export to VR but it apparently can do that.

    Now that I made a panorama I like in PhotoShop can I use Quicktime Pro to turn it into a VR that someone can navigate? I was hoping that PhotoShop could handle the export to VR but it apparently can do that.
    I used PTMac under Leopard on my PPC G5. Not sure if it is still around but here is a sample file for MY BACK YARD. However, it is a dedicated app taking you directly from photos to VR movie or Panoramic views.

  • Know how to resolve when the ipad will not download a movie from the ITunes Store?

    my ipad will not completely download rented movies. It shows that it is "Purchased" but never completes the download so the movie cannot be watched in its entirety.

    I suspect you don't have enough Available storage space. Check at Settings>General>About>Available
    How much space is used by your Other? You may be able to reduce.
    How Do I Get Rid Of The “Other” Data Stored On My iPad Or iPhone?
    http://tinyurl.com/85w6xwn
    How to Remove “Other” Data from iPhone, iPad and iPod Touch
    http://www.igeeksblog.com/how-to-remove-other-data-from-iphone/
    With an iOS device, the “Other” space in iTunes is used to store things like documents, settings, caches, and a few other important items. If you sync lots of documents to apps like GoodReader, DropCopy, or anything else that reads external files, your storage use can skyrocket. With iOS 5/6/7, you can see exactly which applications are taking up the most space. Just head to Settings > General > Usage, and tap the button labeled Show All Apps. The storage section will show you the app and how much storage space it is taking up. Tap on the app name to get a description of the additional storage space being used by the app’s documents and data. You can remove the storage-hogging application and all of its data directly from this screen, or manually remove the data by opening the app. Some applications, especially those designed by Apple, will allow you to remove stored data by swiping from left to right on the item to reveal a Delete button.
    What is “Other” and What Can I Do About It?
    https://discussions.apple.com/docs/DOC-5142
    iPhone or iPad Ran Out of Storage Space? Here’s How to Make Space Available Quickly
    http://osxdaily.com/2012/06/02/iphone-ipad-ran-out-of-available-storage-space-ho w-to-fix-quick/
    6 Tips to Free Up Tons of Storage Space on iPad, iPhone, and iPod Touch
    http://osxdaily.com/2012/04/24/6-tips-free-up-storage-space-ipad-iphone-ipod-tou ch/
    Also,
    How to Clear Message/iMessage Cache on iPhone & iPad And Reclaim Lots of Free Space
    http://www.igeeksblog.com/how-to-clear-message-imessage-cache-on-iphone-ipad/
    What is Stored in iCloud and What is Not
    https://sites.google.com/site/appleclubfhs/support/advice-and-articles/what-is-s tored-in-icloud
     Cheers, Tom

  • What's the best Mac app to copy movies from a DVD to the iPod Touch?

    So let's say i have a DVD and i want to make a copy of it and use an app to transfer it to my iPod Touch, what's the best way of doing this?
    I heard of Handbrake and Videora, are they any good?
    EDIT: I am using a Mac (OS X)

    I use DVD decrypter in rip my DVD's to .vob, which is the same format the movie is on the disk
    and then use Videora to convert to .mp4 with ipod touch codecs and high resolution
    most end up being 900MB to 1.5GB

  • SAP Server Movement from one Location to another Location

    Dear all,
    We plan to move SAP servers from excisting  location to new location .
    Is there any precaution to do before shifting SAP Servers .
    Regards

    Hi,
    How are you doing the migration, are you still connecting to the disk sub system ?
    If you have a DR plan off site? good idea to go over that plan, that will help
    Just a few things to think about, though some may not matter as I do not know you complete plan.
    startup Profile changes
    Background jobs that have hardcoded with previous hostname
    Operation modes
    external interfaces
    Logical paths transaction (file)
    Mark

  • Sap Server movement from physical to virtual(p2v)

    Hi all,
    We currently have two older versions of R/3 running 4.6c and 4.7ee, both IDES versions.
    These versions have been out of support for some time.
    We have these instances running for reference purposes. We have new versions of R/3 ECC 5.0, 6.0
    also running in our company. All these versions of R/3 are IDES.
    Our Windows administrators are of the opinion that servers on which the instances 4.6c and 4.7ee are running are very old,
    and spares are hard to find. So they want to move these instances from a physical environment to a virtual environment.
    I have read through the Note: 1409608.
    It says,
    SAP does not support SAP systems that are installed on Windows 32-bit
    in a virtualized environment. If you plan to migrate your SAP system that is running
    on native hardware on Windows 32-bit to a virtualized environment
    on Windows 64-bit, it might be necessary to upgrade the SAP system to a higher release.
    For these configurations, SAP recommends to migrate the SAP system to Windows x64 first
    and then upgrade the SAP system.
    Now, I don't think is it quite possible to upgrade 4.6c and 4.7ee to 64 bit.
    License keys on windows are based on SID, Hostname, MAC address of the network card.
    If we make sure that the MAC address is the same and
    that its at the same place as before(sequence of multiple network cards is the same),
    we can still Use the old license.
    Our Windows guys say its very hard to retain the MAC address, they can try it.
    So with these old versions of R/3, how can we keep them running, if they have to be moved from Physical to virtual,
    as license keys and installation software is hard to get.
    Regards,
    Vishnu.

    Hi Markus,
    Thanks for your reply. Would open an OSS call.
    I have looked at the note mentioned by you, and since our OS is windows, I thought the below statement
    holds good in my case. From the note I have also deduced that for Windows, licenses are based only on the Hardware Key.
    Am I wrong in assuming this?
    Only Windows uses a hardware key that does NOT depend on the hardware.
    A new installation of Windows definitely causes the hardware key to change.
    I have also looked at note 793649, which says Hardware key changes only when,
    1. Formatting the machine and reinstalling Windows.
    2. When changing the computer name.
    3. When changing the domain (it will not change back when returning to the previous domain).
    Regards,
    Vishnu.

  • It saves the chat history incase you sign in from ...

    whether you clear your chat history on your phone by 'clear data' but it remain saved on other's device, how to overcome this error.  

    it would be possible for apple to create a limited iTunes Store which can be accessible from any of the 171 countries not currently able to access the full store (the UN currently has 192 countries listed). This would allow us poor unfortunates to use the full functionality of iTunes, without being able to buy music.
    Hello, Aziz;
    There are many other sources for downloading album art into iTunes - search the web for "iTunes album art" and you'll find a number of reference.
    And obtaining the artist and track information for CDs you import yourself doesn't come from the iTunes Music Store, it comes from GraceNote's CDDB database.
    So I for one don't see much purpose in an iTunes Music Store lacking the tracks and videos.
    Regards.

Maybe you are looking for

  • Jabber 9.6 no voicemail tab for CUC with CUCM 9 and CUC 8.6

    Hi guys, I have Jabber 9.2 and 9.6 clients with CUCM 9.1.2, CUC 8.5.1 and Cisco IM + P 9.1.1. We've recently updated the CUCM and CUPS to Cisco IM+P.  Also we have migrated from CUPC Clients to Jabber clients.  The CUC server has remained as is.  I w

  • Negative values for Purchase Order Number

    Hi, We are facing a strange issue in our R12.1.3 Ebiz instance (DB 11.2.0.1) - Solaris Sparc 64 bit - 2 node (1 node Apps, 1 node DB). Some of the purchase orders are having a negative purchase order number. SQL> select segment1 from PO_HEADERS_ALL w

  • Autoscroll behavior during DnD in JTree, 1.4 vs 1.6

    The following code compiles under both Java 1.4 and Java 1.6. I'm wondering if anyone knows why the following actions cause different behaviors between the two versions: 1. When the frame opens, you should see a fully-expanded tree (which, because of

  • How to allow Portal server to parse shtml files stored in KM

    Hello, I've created a KM repository and stored shtml files in the folder. Currently when I link to one of those files a prompt window is displayed asking me whether I would like to download or view file instead of launching in the browser as an HTML

  • Viewing JPGs in Photos

    Hi. I'm a bit of a comic nerd and wanted to be able to view some of my digital collection on my iPhone. They're usually in either cbr or cbz format but since I couldn't find a comic viewing application for the iPhone I expanded the folders (cbr & cbz