How to make a copy of an application with its schema-tables,data and all

Good day,
I am looking for the best way to make a copy of an application from one computer to another, including the schema (tables, data and all) in Apex3.2.
I can only manage to make a copy of the application without the data using the export utility
Please assist with this difficulty
Kind Regards
Thabo
Edited by: Thabo K on Jun 1, 2009 1:13 AM

Hello,
To copy across the data you can use the traditional EXP/IMP or the Datapump utility.
If you're used to using EXP/IMP I'd encourage you to look at Datapump, if you haven't used EXP/IMP before I'd encourage you to look at Datapump (datapump rocks) -
http://www.oracle-base.com/articles/10g/OracleDataPump10g.php
There are a few major differences between Datapump and traditional EXP/IMP (EXP/IMP creates the export file on the client side, Datapump creates it on the server side etc).
In my book "Pro Oracle Application Express" I have a section on cloning applications/data between instances, which you might find useful.
Hope this helps,
John.
Blog: http://jes.blogs.shellprompt.net
Work: http://www.apex-evangelists.com
Author of Pro Application Express: http://tinyurl.com/3gu7cd
REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

Similar Messages

  • How many iPhone I can install my application with my apple ID? and is it legal or not??

    how many iPhone I can install my application with my apple ID? and is it legal or not??

    I believe the limit on how any times an application can be installed has been removed, but, as it stands, there is no limit to the number of installations you can have... just the number of activated installations.  For what it sounds like you are doing, there is should not be an issue of hitting a limit even if there is one.
    If you are reinstalling on new machines then you probably want to deactivate the current installations before you attempt to activate on the new machines.

  • How to make a copy of an instance of a class?

    Hi,
    If I create a somethingk like a datagrid and filled it with data during runtime, and then I would like to display the datagrid in another place at the same time. So how to make a copy of the datagrid with the data filled?
    Thanks.

    Hi webvalue, do you wish to display the same data that this DataGrid is using? If so just create a new DataGrid instance and give it the same data as its dataProvider. For example the code below uses two DataGrids that both consume the same data:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
                    layout="absolute"
                    applicationComplete="init(event)">
        <mx:Script>
            <![CDATA[
                [Bindable]
                private var _dp        :Array;
                private function init(e:Event):void
                    _dp = [
                            {label:"FlashGen.Com", data:"http://www.flashgen.com"},
                            {label:"Adobe", data:"http://www.adobe.com"},
                            {label:"Flex.org", data:"http://www.flex.org"},
            ]]>
        </mx:Script>
        <mx:Panel x="10" y="10" width="600" height="207" layout="absolute" title="Multiple DataGrids using the same data source">
            <mx:DataGrid id="dg2" dataProvider="{_dp}"  left="0" top="0" bottom="0" width="50%"/>
            <mx:DataGrid id="dg1" dataProvider="{_dp}" right="0" bottom="0" width="50%" top="0"/>
        </mx:Panel>
    </mx:Application>
    Cloning a DataGrid component doesn't seem to be the right solution given the information you have provided. If you wanted to reuse the DataGrid in a separate view you could always reparent it to the new view by removing it from the current views displaylist and adding it to the new views displaylist like the example below illustrates, here I'm moving the DataGrid (dg) from one Panel component (dghost) to another (dghost2):
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
                    layout="absolute"
                    applicationComplete="init(event)">
        <mx:Script>
            <![CDATA[
                [Bindable]
                private var _dp        :Array;
                private function init(e:Event):void
                    _dp = [
                            {label:"FlashGen.Com", data:"http://www.flashgen.com"},
                            {label:"Adobe", data:"http://www.adobe.com"},
                            {label:"Flex.org", data:"http://www.flex.org"},
                private function moveDataGrid(e:MouseEvent):void
                    dghost.removeChild(dg);
                    dghost2.addChild(dg);
            ]]>
        </mx:Script>
        <mx:Panel id="dghost" x="10" y="10" width="300" height="207" layout="absolute" title="DataGrids original parent container">
            <mx:DataGrid id="dg" dataProvider="{_dp}" right="0" bottom="0" top="0" left="0"/>
            <mx:ControlBar>
                <mx:Button label="Move DataGrid" click="moveDataGrid(event)"/>
            </mx:ControlBar>
        </mx:Panel>
        <mx:Panel id="dghost2" x="10" y="225" width="300" height="207" layout="absolute" title="DataGrids original parent container">
        </mx:Panel>
    </mx:Application>
    While you could clone the DataGrid, when dealing with display objects it's often easier to reparent them as you are only moving it from one view to another; this has the added benefit of saving on memory as you still only have the original instance of the DataGrid not that instance and a new "cloned" instance.
    I hope that helps provide additional options beyond just cloning
    regards
    m
    Mike Jones
    FlashGen.Com
    Adobe Community Expert For Flex
    Adobe Certified Expert for Flex 3 & AIR
    w./ www.flashgen.com
    b./ blog.flashgen.com
    Catch Me At
    Scotch on the Rocks London '09
    Flash on the Beach Brighton '09
    Author Of Developing Flex Components
    Addison-Wesley (Q4 / 2009)

  • How to make a copy of an existing BSP application

    Hi Experts,
    I am working on Web UI WB where i am tyring to make enhanchments as per the clients requirment. I have created new enhanchment set, however i am unable to understand how to make a copy of existing BSP application to make the required changes. Can someone let me know the procedure on how to copy the BSP and make the changes in the methods.
    I am using the TCODE BSP_WD_CMPWB then the component BT108H_LEA
    Thank you
    Leela

    Hi,
    I am trying to rename LEAD with Constituent in Web ui and for that purpose i have created ZClass in Web UIWorkBench, I am able to make changes to the related Method in the Zclass where i have replaced the string with Constituent. Now when i open Webui i see Lead overview page with the description as ConstituentBPLEAD. Can some one let me know how to remove BPLead from the description. I am putting across the code that i have incorporated in the method.
    method IF_BSP_WD_HISTORY_STATE_DESCR~GET_STATE_DESCRIPTION.
    CALL METHOD SUPER->IF_BSP_WD_HISTORY_STATE_DESCR~GET_STATE_DESCRIPTION
    EXPORTING
    IV_CURRENT_DESCRIPTION = IV_CURRENT_DESCRIPTION
    RECEIVING
    DESCRIPTION = DESCRIPTION
    Data corp_descr type string.
    corp_descr = cl_wd_utilities=>get_otr_text_by_alias( 'CRM_UIU_MASTER/TITLE' ).
    if description cs corp_descr.
    replace corp_descr with 'Constituent' into description.
    endif.
    endmethod.
    Thanks
    Leela

  • How to make a copy of a legal size document on HP Officejet Pro 8600

    How to make a copy of a legal size doucment on HP Officejet Pro 8600 e-All-in-One?

    Hi,
    Please try
    (a) Load legal size papers onto the input tray (you have to extent the tray from the blue/cyan part to fit legal size papers),
    (b) Load original face up on the ADF,
    (b) Touch copy,
    (e) Touch Settings (now you can change size and few other options,
    (f) Touch Black or Colors to copy.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How to make a copy of a query?

    We can't find contex menu item to make a copy of a query when right clicking a query and can't find any picture icon/button to make it.  If someone can tell us on how to do it?
    Thanks

    Hi Kevin,
    To make a copy of the query use the "save as" option in the query designer and assign the new technical name and description.
    If you want to copy the query between 2 data targets then use the transaction RSZC.
    Bye
    Dinesh

  • How to make a copy of one company to another

    hi
         i want to have a backup of one company! can anyone help me how to make a copy of an existing company

    Hi,
    you can use the SQL backup and restore
    if you use SQL 2000, open Enterprise manager, right click on the company DB that you wish to back up and choose "all tasks" -> "Backup Database"
    then click "Add" and select the name of your backup
    then press OK and you just made a backup of your company DB.
    for duplicating DB, just create a new empty sql DB and right click on it->All tasks->select Restore database -> select from device -> clickon from device and select the backuped DB to duplicate.
    go to the option tab and make sure the restore path is correct and that Force restore is marked.
    hope it helps
    let me know if you need more info
    Moty Moshin

  • Always used 1 main account.  Started using individual user accounts. So how do I use software or applications with a lot of data like Quicken under my own user account?

    I recently upgraded our family's mac to OS X.  I thought this was the perfect time to create and use "user accounts".  We had always used 1 main account.  So how do I use software or applications with a lot of data like Quicken under my own user account?  I wanted to be able to manage my own itunes library, iphone apps, messages.  But I still really need to use the Stuff I have in Quicken essentials.  I don't want to have to restart all my work done in Quicken already.

    I haven't used Quicken in a while, but most applications store your files in your Documents folder. Is that where your Quicken data file is? What you do next depends on how many family members need to get at that data.
    If multiple family members need to use the Quicken data file, try moving it to the Documents folder in the Shared account. That is an account that all accounts can see. It's at the same level as the other accounts. In other words, Shared is one level up from your Home account, or Hard Drive/Users/Shared.
    If you're the only one allowed to see that Quicken data, move the Quicken data file from the old main account to your account, and don't leave a copy behind. You can use the Shared folder as a way station for the transfer since you won't be able to see both accounts' Documents folders at the same time (because you're not allowed to peek into other people's accounts). Or you can use another disk or server for the transfer, as long as you can get to it when logged into either account.

  • How to make a magnifying glass link to a look up table ?

    Dear Friends,
    Hello. I am developing the accounting application of journal entry. In journal line, I use the image "magnifying glass" next to each chart field. When we click on the magnifying glass, it's supposed to come up a look up table( a chart and name mapping table), and we select the proper chart to input into the chart field.
    I understand to create another record and page for the look up table. But I don't understand how to make a magnifying glass link to a look up table. Can anybody tell me how to do that ? Thanks.
    Lucy

    This is how it works,
    Table A (which stores chart fields). You have used fields from table A on a page so that users can input data.
    You don't need to put a magnifying glass image or create a new page to achieve look up page.
    all you need to do is create another table say Table B which should have the chart field and corresponding description you want to show on lookup page. Then open record-field property of the chart field on Table A and mention Table B as prompt table.

  • How to make the servo motor to move in steps of set degrees and stop

    how to make the servo motor to move in steps of set degrees and stop

    Hi,
    I think the following document would be a good starting place: NI Developer Zone Tutorial: Single Axis Moves It includes links to several example programs that you may find useful for your application. Keep in mind that there are many motion examples that ship with LabVIEW as well.
    I strongly recommend that you check out the following documents as well:
    NI Developer Zone Tutorial: Simple Point to Point Motion
    NI Dev
    eloper Zone Tutorial: Hands-On Motion
    NI Developer Zone Tutorial: Axis Settings for Motion Controllers
    These tutorials will help give you a good foundation for understanding motion control systems.
    Best wishes!
    Dawna P.
    Applications Engineer
    National Instruments

  • Has anyone figured out how to make the Yamaha 01V96i mixer work with Logic 9.1.8

    Has anyone figured out how to make the Yamaha 01V96i mixer work with Logic 9.1.8 as a control surface ?

    In YAMAHA01v96i:
    Go to DIO/SETUP select Generic DAW. Go to MIDI settings page and set the desired port (personally I use Number 1), Select the same audio frequency you use in your DAW (I use 44.1KhZ)...at this point You should save a scene in you 01V96i to avoid to repeat all the procedure again.
    Open studio manager, go to patch and set the input port from 17 to 32 respectively to USB1-USB16 (this will give you the return from you DAW to the 01v96i
    Save again the scene overwriting the old one.
    in LOGIC
    Click on preferences, select Audio then select 01v96i, then click on control surface and select Mackie design Baby HUI and in the midi session set the same port that you've been setting on the Yamaha 01V96i (Port 1 if you follow this example).
    That's more or less it.
    It worked for me...so far

  • How do I add/copy songs from iTunes 11 to my iPod Classic and copy playlist from iTunes 11 to my iPod? It was easy to do in earlier versions of iTunes, but now I can not figure out how to do it.

    How do I add/copy songs from iTunes 11 to my iPod Classic and copy playlist from iTunes 11 to my iPod? It was easy to do in earlier versions of iTunes, but now I can not figure out how to do it.

    How do I add a new playlist to my ipod using iTunes 11? - https://discussions.apple.com/thread/4577843

  • How to make the Profit Center Field Mandatory in Cost center Master Data

    Dear All,
    Please let me know how to make the Profit Center Field mandatory in Cost Center Master Data as well as my Internal Order Master Data?
    Thanks in advance!
    Regards,
    Rajeswari Shankar.

    Hi Rajeswari,
    You can modify message number KS096 to "Error" via OBA5. Thus, the users would no be able to save a cost center without entering a profit center. (Depending on your release you can make KS096 modifiable by implementing note 486781.) 
    Concerning the internal orders (transaction KO01), you can run KOT2 and set Profit center field as required entry in "change field selection" section.
    Regards,
    Greta

  • How to make i phone 4s to give a busy signal rather hold and answer?

    how to make i phone 4s to give a busy signal rather hold and answer?

    Sorry, I ment how to make i phone 4s to give a busy signal rather hold and answer when a second call comes in?

  • One application with Multiple schemas- common application frame work

    Hi All,
    I am trying setup a common application frame work in apex. Please help me.
    How to achieve this.
    Creation of one application attached to different schemas at run time. So that my application maintaince is going to be easy instated of creating copies of same application.
    More details:
    1. I have one application with 100 pages pointing to a schema dev_common in one workspace APP_COMMON. I have 50 schemas with same structure of dev_common schema with different set of data ( because of large amount of data).
    So I want to create one application attached to different schemas.
    2. And another thing is I have 100 users, the user can work on 1 or multiple schemas ( I mean same application with different schemas attached)
    Any help much appreciated.
    Thanks,

    Thank you for the reply.
    >> b) I think you have to give access rights for the dev_common and app_common to all users.
    Dev_common schema is a kind of placeholder. I have 50 schemas same as dev_common because of different business requirements but the front end is same for all 50 schemas. How can we create one application used for 50 schemas instead of creating 50 applications and 50 workspaces.
    Please help me.

Maybe you are looking for

  • Itunes install error R6034

    Itunes will not open due to a runtime error R6034. I have tried to reinstall itunes 3 times, but still get the same error.

  • PROBLEM WITH CURRENCY CONVERSION IN ALV

    HI.. When iam trying to convert currency field from one currency to another (eg: usd to inr) iam getting error. iam using the fm 'convert_to_local_currency'. i want to display both the coloumns i.e usd,inr in the same grid. help me.... thanks.

  • SAP HR - will it be a right choise

    Hi Folks, Glad to be a part of the SCN community. I am current working in a BPO, I am really passionate about SAP and have a strong will to make my carrier in SAP.Right now I am working with technical support. I have completed my MBA - HR and want to

  • Error message when uploading photos

    Can't upload photos.  I get a message error #2038

  • Play Head on Timeline

    Hello, This hasn't happened to me before. I transfered over a final cut project from one computer to another and when i play my video on the timeline, it plays but the playhead doesn't move. Once i press the space bar to stop playing the video. The p