Help on cloning technique?

Hi, I recently made a clone video. I shot the two "me's" but found out when editing that the interaction didn't match up. I need to extend the arm a bit on the punch, how would I go about doing this? Thanks in advance!
Here's the video:
http://www.youtube.com/watch?v=9yD9Lhz1GKo

The best way would be to isolate the clone from the background by rotoscoping. It will take some time. Then just move the copy into the correct position. If you need to you could then apply a little puppet pin or other distortion to a few of the frames. Each frame that you're using puppet pin on needs to be a separate layer.
There is no easy one click solution that would sell this effect. It's also very hard to sell this kind of effect if you don't do some careful pre-production planning. If I had shot it I would have shot the master (guy on the left) then shot the right side guy but with a 6b green screen behind him and his punch so that I wouldn't have to roto. A target to punch, like a tennis ball on a string would also help.

Similar Messages

  • Need help about cloning of apps(r12 v12.4) and DB(10.2.0.2.0)

    Hi,
    I am going to clone the Apps server and database server.
    So, Please send me the both cloning steps if anyone have.
    I had been read the cloning manual from r12 documentation,
    but I can not understand the proper flow of steps.
    And anyone can help me about the to cross-check of privious cloned APPS server and Database server that are correctly cloned.
    I mean how to verify the "data accuracy" of cloned apps and DB.
    Thanks,
    Fayaz Ahmed
    Oracle Apps DBA

    Please refer to the following notes:
    Note: 406982.1 - Cloning Oracle Applications Release 12 with Rapid Clone
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=406982.1
    Note: 603104.1 - Troubleshooting RapidClone issues with Oracle Applications R12
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=603104.1

  • XML Gurus: help with cloning a node without using clone!

    Dear all,
    I have to copy one piece of XML from one part of the document to another. Unfortunately I cannot simply do a copy and paste:
    Node nodeLeaf = nodeChild.cloneNode(true);
    nodeAncestor.appendChild(nodeLeaf);
    because some fragments of the nodeLeaf mustn't be copied (depending on the node value)
    So I cannot make a deep clone of the leaf.
    I have to make a clone of nodeLeaf by myself. (Copying its child with a recursive function)
    I have built a recursive function but I cannot understand why it doesn't work correclty (text values are skipped and also some pieces of the xml aren't copied correclty)
    // Passing the full leaf and a leaf with only the first tag, under which I clone manually the nodes.
    Node copyNode = appendNodes(nodeLeaf, nodeLeaf.cloneNode(false));
    private Node appendNodes(Node node, Node copyNode) {
    NodeList kids = node.getChildNodes();
    int length = kids.getLength();
    if (kids != null) {
    for (int ii = 0; ii < length; ii++) {
    Node nodeKid = kids.item(ii);
    copyNode.appendChild(nodeKid.cloneNode(false));
    appendNodes(nodeKid,nodeKid);
    return copyNode;
    Anybody can give me a help ?
    thanks a lot
    Francesco

    Here are a couple of suggestions:
    1) General stuff.
    NodeList kids = node.getChildNodes(); will always generate a NodeList. It may have no entries, but there is no need to check for if (kids != null). Your for loop will do nothing if the length is zero.
    2) You need to change your code as follows:
    for (int ii = 0; ii < length; ii++)
       Node nodeKid = kids.item(ii);
       Node newOutputNode = nodeKid.cloneNode(false);
       copyNode.appendChild(newOutputNode);
       appendNodes(nodeKid,newOutputNode);
    }Dave Patterson

  • Help with cloning an element

    I've included a screenshot.
    http://imgur.com/SpZsCbB
    Basically, what I'm trying to do is "rebuild" the house in the picture so that the garage is eliminated from the shot (covered in stucco like the rest of the house). I'm having issues doing this, and I'm sure there's several ways to go about it (as there usually are).
    Any help from the community is appreciated; thanks in advance!
    Tim

    Thans for the response; the camera does not move; the whole shot is static. I thought about simply using Photoshop, but I assume (dangerous word, I know) that it would look "weird", since I'd be meshing a still image with a moving, grainy one.

  • Help Agent Cloning.

    I have over 30 servers to install agent. so i preferred cloning the agent. I did some research and came out wiht this steps.
    Step 1.
    <Agent_ORACLE_HOME>/oui/bin/runInstaller –clone –forceClone ORACLE_HOME=<full path of ORACLE_HOME>ORACLE_HOME_NAME=<NAME> -noconfig –silent
    Step 2.
    Run the Agent configuration assist to configure the Agent and discover the host’s targets by executing the following command.
    <Agent_ORACLE_HOME>/bin/agentca –f
    Step 3.
    Run the newly Cloned Agent’s root.sh script.
    Step 4.
    In order to enable secure communication between the Agent and the OMS, secure the agent
    <agent_HOME>/bin/emctl secure agent <password>
    My question is.
    1.after runnnig the silent mode install in step 1, in step 2 i am configuring the Agent to discover the Host's target, i'm not sure how the command
    agentca -f know the OMS server. (because in the command i didnt give any input of my OMS host name)
    2. I have already some agents installed and listening to other OMS server. Now i have to reconfigure them to the new OMS server. How am i going to use the agentca -f to configue the agent to the new host.(how does the agent detect my new OMS server). do i need to edit the emd.properties in the agent and them run the agentca -f ?
    Please advice.

    1.after runnnig the silent mode install in step 1, in step 2 i am configuring the Agent to discover the Host's target, i'm not sure how the command
    agentca -f know the OMS server. (because in the command i didnt give any input of my OMS host name)
    --- You have to change the emd.properties file under AGENT_HOME/sysman/config .
    You have to changed
    REPOSITORY_URL & emdWalletSrcUrl . agentca -f will configure your agent and GC discovers the repsective host and you have to configure the db on GC.
    2. I have already some agents installed and listening to other OMS server. Now i have to reconfigure them to the new OMS server. How am i going to use the agentca -f to configue the agent to the new host.(how does the agent detect my new OMS server). do i need to edit the emd.properties in the agent and them run the agentca -f ?
    ---Follow the below steps..
    1.     Stop the Management Agent.
    cd $AGENT_HOME
    $emctl stop agent
    2.     Locate the emd.properties file in the Management Agent home directory:
    $AGENT_HOME/sysman/config/emd.properties
    3.     Use a text editor to open the file and locate the REPOSITORY_URL property.
    Modify the value for the REPOSITORY_URL property so it references the new Management Service.
    For example:
    REPOSITORY_URL=http://mgmthost_new.com:4889/em/upload
    4.     Modify the value for the emdWalletSrcUrl and emdWalletDest properties so they reference the new Management Service and the new Oracle home path, respectively:
    For example, if the new Management Service is on a host called mgmthost_new.com and the new Oracle home is /private/oracle/em10g, modify the properties as follows:
    emdWalletSrcUrl=http://mgmthost_new.com:4889/em/wallets/emd
    emdWalletDest=/private/oracle/em10g/sysman/config/server
    5.     Save your changes and close the emd.properties file.
    6.     Delete all the files in the following directories:
    AGENT_HOME/sysman/emd/upload/
    AGENT_HOME/sysman/emd/state/
    7.     Restart the Management Agent.
    emctl start agent

  • Need help with cloning my hard drive to an external

    I need to clone my hard drive to an external drive so that it is bootable and able to be used still, but I also need to do a fresh system install on my macbook pro. I have alot of programs currently on my system that I don't want on the fresh install but I will still need to use them on the external if I boot off of it.
    My questions are:
    1. Is this possible to do
    2. If so how do I do it.
    Thanks in advance

    So virtually 2 different systems being able to operate on the one machine?
    yes and yes.
    most of the prosumers here keep a pair or at least one clone of every machine they have, theyre priceless tools for recovery from HD crash, and priceless in testing and usefulness.
    yes, people use a clone drive for many things including testing or 'sandboxing' new software on a clone rather than their computer.
    its the best fastest way to getting back to 100% quickly after a HD crash, many many advantages.
    HD clones
    Advantages:
    1. HD clones are the best, quickest way to get back to 100% full operation in mere seconds.
    2. Once a HD clone is created, the creation software (Carbon Copy Cloner or SuperDuper) is no longer needed whatsoever, and unlike TM, which requires complex software for its operational transference of data, a HD clone is its own bootable entity.
    3. HD clones are unconnected and isolated from recent corruption.
    4. HD clones allow a “portable copy” of your computer that you can likewise connect to another same Mac and have all your APPS and data at hand, which is extremely useful.
    5. Rather than, as many users do, thinking of a HD clone as a “complimentary backup” to the use of TM, a HD clone is superior to TM both in ease of returning to 100% quickly, and its autonomous nature; while each has its place, TM can and does fill the gap in, say, a 2 week old clone. As an analogy, the HD clone itself is the brick wall of protection, whereas TM can be thought of as the mortar, which will fill any cracks in data on a week, 2-week, or 1-month old HD clone.
    6. Best-idealized 2nd platform redundancy for data protection, and 1st level for system restore of your computers internal HD. (Time machine being 2nd level for system restore of the computer’s internal HD).
    HD cloning software options:
    1. SuperDuper HD cloning software APP (free)
    2. Carbon Copy Cloner APP (will copy the recovery partition as well)
    3. Disk utility HD bootable clone.

  • Help with Cloned Objects

    Object.clone() should create a new Instance of the Object right? Same member varible values, etc. but different memory, not a reference back to the same Object right?
    I've got the following class that implements Cloneable:
    public abstract class Control implements ControlInterface, Cloneable {
       * Create a clone from super.clone() and add it to the List this.clones
      public Object clone()  {
        Control ctrl = null;
        System.out.println("Orig : " + this.getMeta("id") + "," + this.toString());
        try {
          ctrl = (Control)super.clone();
          clones.add(ctrl);
          // change the Control's ID to reflect it's
          // position in the List
          ctrl.setMeta("id", ctrl.getMeta("id") + "_" + clones.size());
          System.out.println("Clone: " + ctrl.getMeta("id") + "," + ctrl.toString());
          System.out.println("Orig : " + this.getMeta("id") + "," + this.toString());
        catch (CloneNotSupportedException e) {
          // should never happen since class implements Cloneable
        return ctrl;
    }When I clone the object, it prints:
    Orig : companyname,com.alcatel.report.controls.TextControl@ca5f2c
    Clone: companyname_1,com.alcatel.report.controls.TextControl@2e714b
    Orig : companyname_1,com.alcatel.report.controls.TextControl@ca5f2c
    Why does the original Object's getMeta("id") value change? Shouldn't it stay the same? Ugh, I'm confused :)

    right, sorry - I mean, could you post the code where
    you create the original object, then the cloned
    object.Well, nothing really non-standard about it, just a call to the constructor and then a call to the .clone() method later:
    creation
      private void parseControls(Node node) throws AlaException, AlaMissingParamException {
        if (node != null) {
          NodeList children = node.getChildNodes();
          for (int i=0; i < children.getLength(); i++) {
            Node child = children.item(i);
            if ("input".equals(child.getNodeName())) {
              NamedNodeMap attribs = child.getAttributes();
              Node type = attribs.getNamedItem("type");
              if ("text".equals(type.getNodeValue())) {
                this.controls.add(new TextControl(child, request));
              if ("search".equals(type.getNodeValue())) {
                this.controls.add(new SearchControl(child, request));
              if ("date".equals(type.getNodeValue())) {
                this.controls.add(new DateControl(child, request));
              if ("date-range".equals(type.getNodeValue())) {
                this.controls.add(new DateRangeControl(child, request));
              if ("lov".equals(type.getNodeValue())) {
                this.controls.add(new LovControl(child, request));
    clone
      public void cloneControl(String id) throws AlaException {
        for (int i=0; i < controls.size(); i++) {
          Control ctrl = (Control)controls.get(i);
          if (ctrl.getMeta("id").equals(id)) {
            ctrl.clone();
      }The returned Object is not saved because the controls keep track of their own clones in an ArrayList.

  • Help! Masking techniques for Photoshop

    I am relatively new to Photoshop CS2 but I've used other apps before. My question is - if I have a photo with a figure dressed in black on a light background, what is the besttechnique to use if I want to cut the figure out and put her in a backgroun of another colour, maybe a darker colour?
    There are 2 issues here:
    (1) How to create a near-perfect mask around the figure? I tried using the magic wand, it's very very close but there are one or two places that I am not happy about, such as around the face where the colour value of the face is close to the colour value of the wall.
    (2) Since she is on a light baclground to begin with, wearing a black jacket, I get a halo when I put her on a darker background. How can I mask out something like this, and be able to put the figure onto any colour background without the halo effect?
    Please help!

    Have you tried Extract? Or the Pen? Or Quickmask? These are all ways to make a selection which might be better than what the Wand gives you, or that can be added or subtracted from the Magic Wand selection.
    If you have a rough mask you can zoom in and edit it until it fits perfectly. Look at the Channels palette. The mask will be there. You can turn on its visibility while the rest of the image is visible for instance. Masks and Channels are only grayscale images and can be manipulated as such.

  • Need help with cloning my main HD to a second one...

    Hey guys,
    I just bought a 160 GB Western Dig SATA drive. I want to backup all my programs, music, pictures, etc. to this HD and do a fresh install on my main 250 gig HD. Then I will transfer back over all my files. Is that what a clone does? Does it save everything and then allow you to transfer it back? I am very new and nervous about erasing and reinstalling Tiger. Thanks

    Hi Chris;
    Last spring, I did something simular to what you are asking on my G4 MDD. I installed a new 160 GB SATA drive which was faster then my old 60 GB ATA drive. Plus I knew I was going to upgrade to PM G5 which would also be using SATA drives.
    What I did was use SuperDuper to clone my old ATA drive on to the new SATA drive. I then booted from SATA drive. After testing to be sure that everything was there, I reformatted my old ATA drive.
    I think the same process should work for you.
    Why do you think you need a "fresh" install?
    Are you having any problems with your system at the present time?
    If not, I don't see what a "fresh" install will buy you.
    Allan

  • Cloning : hot cloning and cold cloning

    hi
    how to clone in EBS R12.I am a core DBA student currenly working as trainee in EBS dba.
    can anyone explain ....
    i am requesting some details on hot cloning , cold cloning and user managed cloning techniques.
    in user managed cloning i need to run adpreclone.pl then copy some files then whats for when using rapid clone ??
    rgrds

    See the below metalink notes on cloning..
    Note 230672.1 - Cloning Oracle Applications Release 11i with Rapid Clone
    Note 362473.1 - Cloning E-Business Suite Using Hot Backup for Minimal Downtime of Source Environment
    Note: 799735.1 - Rapid Clone Documentation Resources, Release 11i and 12
    Note: 216664.1 - FAQ: Cloning Oracle Applications Release 11i
    Hope this helps
    Regards
    http://www.oracleracexpert.com
    Click here for steps to [Oracle version upgrade from 10.2.0.x to 10.2.0.4
    http://www.oracleracexpert.com/2009/10/oracle-version-upgrade-from-1020x-to.html
    Click here to [Download Oracle Grid Control and ASMLib and Install
    http://www.oracleracexpert.com/2009/08/download-oracle-grid-control-and-asmlib.html                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Licencing and cloning ???

    I have have just bought 11 computers which are the same. 
    There are a number of cloning tools out there including Acronis, CloanZilla, HDClone5, AOMEI.  What I want to know is if I clone one drive to the rest of the drives is it going to break something as far as Licencing is concerned.  Are
    the licenses built into the software that is installed on these Lenovo Systems, or can I simply cloan them and I will not run into any issues with the updates etc.
    I have watched the video and read the material from Microsoft called building a standard image of windows seven but this seems quite involved and quite frankly since I have Acronis and some of these other utilities it makes it so much users simply to run
    them back it up and then restored to the various computers.
    Regards

    What I want to know is if I clone one drive to the rest of the drives is it going to break something as far as Licencing is concerned. 
    Probably. There's quite a bit more to deploying Windows, it's not just cloning. 
    Are the licenses built into the software that is installed on these Lenovo Systems, or can I simply cloan them and I will not run into any issues with the updates etc.
    There is more to the licensing than the firmware and OS. If you use simple cloning techniques (capture the clone, *after* the computer has been allowed to perform first-run/OOBE), yes, you can expect issues.
    I have watched the video and read the material from Microsoft called building a standard image of windows seven but this seems quite involved and quite frankly since I have Acronis and some of these other utilities it makes it so much users simply to run them
    back it up and then restored to the various computers.
    It is involved. That's how Windows works. If you capture a backup/image of a machine which has performed setup/individuation, then clone that out, you are deploying without performing individuation. Sysprep performs that function.
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Help in update data

    Hi, I am unable to update in entity column and gets the error. How I can update this script successfully. Any help please.
    My SQL-Script
    update pruder set hr_tb=345 where  hr_tb=10
    Error message
    Can not
    update
    identity
    column

    UPDATE requires an INSERT and DELETE, so IDENTITY_INSERT won't help.
    This technique can work...
    CREATE TABLE #forumTable (hr_tb INT IDENTITY, val INT)
    INSERT INTO #forumTable (val)
    VALUES (1),(1),(1),(1),(1)
    ALTER TABLE #forumTable ADD hr_tbX int
    UPDATE #forumTable SET hr_tbX = hr_tb
    UPDATE #forumTable SET hr_tbX = 6 WHERE hr_tbX = 1
    CREATE CLUSTERED INDEX sorter ON #forumTable ( hr_tbX)
    ALTER TABLE #forumTable
    DROP COLUMN hr_tb
    ALTER TABLE #forumTable
    ADD hr_tb INT IDENTITY
    DROP INDEX sorter ON #forumTable
    ALTER TABLE #forumTable
    DROP COLUMN hr_tbX
    SELECT * FROM #forumTable
    DROP TABLE #forumTable
    But, you might be better off just deleting the record and re-adding it to the end of the table.
    As Jingyang says, its bad, don't do it... it leads only to the dark side, and they do not have the cookies they promised.

  • Multinode Cloning

    Hi all ,
    Can someone guide me , what are the steps involved in doing a cloning on a multinode installation 11.5.10.2 on Linux
    Thanks in advance
    kind regards
    Mat

    your source doucmant is the following metalink note
    230672.1 Cloning Oracle Applications Release 11i with Rapid Clone
    if you need any help while cloning plz let us know
    fadi
    http://oracle-magic.blogspot.com

  • Oracle Apps 11i Cloning with +ASM 10g Database

    Hi,
    Can somebody help Apps cloning on the issue facing. Please provide in detailed process Apps Cloning with +ASM.
    Trying to Clone 11i Apps environment(11.5.10.2) and Db 10.2.0.4. The database is on +ASM.
    1. Copied all the application files from SOURCE to TARGET ( source and target are different servers)
    2. Database restored from source and the TARGET database is up and running( Database servers TARGET and SOURCE are 2 different servers.
    3. As per doc id 230672.1 , preclone was successful in apps and db servers.
    ISSUE:
    =====
    As per doc id 230672.1 , if we run adcfgclone on database server that messedup the database which is running already on the TARGET server, because adcfgclone recreate control files and all which is already intact for us in +ASM.
    Question:
    ======
    1. do we still need to do anything on the TARGER database server? if need to run , please provide the detailed steps
    2. Do we need to run adcfgclone on apps server? please provide the detailed steps.
    Thank You,
    Dheeru.

    Yes, restored and the database is up and running.
    Then i ran adcfgclone dbtier on database which messedup whole database. Deleted all the file in ASM disk groups and try to restore the database threw RMAN.
    Got new error, Please see below.
    In the first run previously i got same error but fixed by creating control_files='+LASR','+FLASH' in pfile, again it's giving same error.
    Also pasting PFILE.
    Any idea on this.
    Recovery Manager: Release 10.2.0.4.0 - Production on Wed Jan 5 17:15:12 2011
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    connected to target database: LASRT (DBID=1482364021)
    connected to auxiliary database: LASRX (not mounted)
    RMAN>
    RMAN> 2> 3> 4> 5> 6> 7> 8> 9>
    executing command: SET until clause
    using target database control file instead of recovery catalog
    allocated channel: aux1
    channel aux1: sid=872 devtype=DISK
    allocated channel: aux2
    channel aux2: sid=871 devtype=DISK
    Starting Duplicate Db at 05-JAN-11
    contents of Memory Script:
    set until scn 11188183994442;
    set newname for clone datafile 1 to new;
    set newname for clone datafile 2 to new;
    set newname for clone datafile 3 to new;
    set newname for clone datafile 4 to new;
    set newname for clone datafile 5 to new;
    set newname for clone datafile 6 to new;
    set newname for clone datafile 7 to new;
    set newname for clone datafile 25 to new;
    set newname for clone datafile 26 to new;
    set newname for clone datafile 38 to new;
    set newname for clone datafile 43 to new;
    set newname for clone datafile 44 to new;
    set newname for clone datafile 45 to new;
    set newname for clone datafile 46 to new;
    set newname for clone datafile 47 to new;
    set newname for clone datafile 48 to new;
    set newname for clone datafile 49 to new;
    set newname for clone datafile 50 to new;
    set newname for clone datafile 51 to new;
    set newname for clone datafile 52 to new;
    set newname for clone datafile 53 to new;
    set newname for clone datafile 54 to new;
    set newname for clone datafile 55 to new;
    set newname for clone datafile 56 to new;
    set newname for clone datafile 57 to new;
    set newname for clone datafile 58 to new;
    set newname for clone datafile 59 to new;
    set newname for clone datafile 60 to new;
    set newname for clone datafile 61 to new;
    set newname for clone datafile 62 to new;
    set newname for clone datafile 63 to new;
    set newname for clone datafile 64 to new;
    set newname for clone datafile 65 to new;
    set newname for clone datafile 66 to new;
    set newname for clone datafile 67 to new;
    set newname for clone datafile 68 to new;
    set newname for clone datafile 69 to new;
    set newname for clone datafile 70 to new;
    set newname for clone datafile 71 to new;
    set newname for clone datafile 72 to new;
    restore
    check readonly
    clone database
    executing Memory Script
    executing command: SET until clause
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    Starting restore at 05-JAN-11
    channel aux2: starting datafile backupset restore
    channel aux2: specifying datafile(s) to restore from backup set
    restoring datafile 00003 to +LASR
    restoring datafile 00004 to +LASR
    restoring datafile 00006 to +LASR
    restoring datafile 00007 to +LASR
    restoring datafile 00025 to +LASR
    restoring datafile 00045 to +LASR
    restoring datafile 00046 to +LASR
    restoring datafile 00049 to +LASR
    restoring datafile 00051 to +LASR
    restoring datafile 00053 to +LASR
    restoring datafile 00054 to +LASR
    restoring datafile 00058 to +LASR
    restoring datafile 00060 to +LASR
    restoring datafile 00062 to +LASR
    restoring datafile 00064 to +LASR
    restoring datafile 00066 to +LASR
    restoring datafile 00068 to +LASR
    restoring datafile 00070 to +LASR
    restoring datafile 00071 to +LASR
    restoring datafile 00072 to +LASR
    channel aux2: reading from backup piece /ora_export/lasrx/15m16kuo_1_1
    channel aux1: starting datafile backupset restore
    channel aux1: specifying datafile(s) to restore from backup set
    restoring datafile 00001 to +LASR
    restoring datafile 00002 to +LASR
    restoring datafile 00005 to +LASR
    restoring datafile 00026 to +LASR
    restoring datafile 00038 to +LASR
    restoring datafile 00043 to +LASR
    restoring datafile 00044 to +LASR
    restoring datafile 00047 to +LASR
    restoring datafile 00048 to +LASR
    restoring datafile 00050 to +LASR
    restoring datafile 00052 to +LASR
    restoring datafile 00055 to +LASR
    restoring datafile 00056 to +LASR
    restoring datafile 00057 to +LASR
    restoring datafile 00059 to +LASR
    restoring datafile 00061 to +LASR
    restoring datafile 00063 to +LASR
    restoring datafile 00065 to +LASR
    restoring datafile 00067 to +LASR
    restoring datafile 00069 to +LASR
    channel aux1: reading from backup piece /ora_export/lasrx/16m16kuo_1_1
    channel aux1: restored backup piece 1
    piece handle=/ora_export/lasrx/16m16kuo_1_1 tag=TAG20110103T144231
    channel aux1: restore complete, elapsed time: 00:18:55
    channel aux2: restored backup piece 1
    piece handle=/ora_export/lasrx/15m16kuo_1_1 tag=TAG20110103T144231
    channel aux2: restore complete, elapsed time: 00:21:20
    Finished restore at 05-JAN-11
    sql statement: CREATE CONTROLFILE REUSE SET DATABASE "LASRX" RESETLOGS ARCHIVELOG
    MAXLOGFILES 16
    MAXLOGMEMBERS 2
    MAXDATAFILES 72
    MAXINSTANCES 1
    MAXLOGHISTORY 7303
    LOGFILE
    GROUP 1 SIZE 20 M ,
    GROUP 2 SIZE 20 M ,
    GROUP 3 SIZE 20 M
    DATAFILE
    '+LASR/lasrx/datafile/system.331.739646133'
    CHARACTER SET WE8ISO8859P1
    released channel: aux1
    released channel: aux2
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 01/05/2011 17:36:50
    RMAN-06136: ORACLE error from auxiliary database: ORA-01503: CREATE CONTROLFILE failed
    ORA-01276: Cannot add file +LASR/lasrx/controlfile/current.332.739640887.  File has an Oracle Managed Files file name.
    =======================================================================
    PFILE
    ====
    *.aq_tm_processes=2
    *.audit_file_dest='/10g/app/oracle/admin/lasrx/adump'
    *.background_dump_dest='/10g/app/oracle/admin/lasrx/bdump'
    *.compatible='10.2.0'
    *.core_dump_dest='/10g/app/oracle/admin/lasrx/cdump'
    *.control_files='+LASR','+FLASH'
    *.db_block_size=8192
    *.db_cache_size=318767104
    *.db_create_file_dest='+LASR'
    *.db_domain=''
    *.db_file_multiblock_read_count=8
    *.db_files=500
    *.db_name='LASRX'
    *.db_recovery_file_dest='+FLASH'
    *.db_recovery_file_dest_size=5120M
    *.dml_locks=5000
    *.job_queue_processes=0
    *.local_listener='(ADDRESS=(PROTOCOL=TCP)(HOST=hct431oractd002.mfia.state.mi.us)(PORT=1524))'
    *.log_archive_dest_1='LOCATION=+FLASH/LASRX'
    *.log_archive_format='%t_%s_%r.arc'
    *.log_buffer=30551040
    *.log_checkpoint_interval=100000
    *.log_checkpoint_timeout=72000
    *.log_checkpoints_to_alert=TRUE
    *.max_dump_file_size='20480'
    *.nls_comp='binary'
    *.nls_date_format='DD-MON-RR'
    *.nls_language='american'
    *.nls_length_semantics='BYTE'
    *.nls_numeric_characters='.,'
    *.nls_sort='binary'
    *.nls_territory='america'
    *.O7_DICTIONARY_ACCESSIBILITY=FALSE
    *.open_cursors=500
    *.open_links=20
    *.parallel_max_servers=12
    *.parallel_min_servers=0
    *.pga_aggregate_target=681574400
    *.processes=800
    *.query_rewrite_enabled='TRUE'
    *.remote_login_passwordfile='EXCLUSIVE'
    *.resource_manager_plan=''
    *.session_cached_cursors=100
    =============================

  • Cloning problem with Tool Tip Manager

    Hi,
    I am using JDialog which has got JTabbedPane. Inside the JTabbedPane I am using JTable.
    I want to clone JDialog object, for which I am using deep cloning technique. When I call my overloaded clone method it throws "NotSerializableExcpetion" for javax.swing.ToolTipManager class.
    I checked out the ToolTipManager Class which does not implements java.io.Serializable interface.
    I will create a new class which will extend ToolTipManger and implements java.io.Serializable interface. How can I override the default ToolTipManager using my new class.
    Thanks in advance,
    Deep Shah

    Hi,
    I am using JDialog which has got JTabbedPane. Inside the JTabbedPane I am using JTable.
    I want to clone JDialog object, for which I am using deep cloning technique. When I call my overloaded clone method it throws "NotSerializableExcpetion" for javax.swing.ToolTipManager class.
    I checked out the ToolTipManager Class which does not implements java.io.Serializable interface.
    I will create a new class which will extend ToolTipManger and implements java.io.Serializable interface. How can I override the default ToolTipManager using my new class.
    Thanks in advance,
    Deep Shah

Maybe you are looking for