What is the Best Method to move the Applcations to a New Server Setup

Hi All...
Happy Christmas...
Advanced Happy New YEAR 2009...
We are using oracle Apex 3.1 on Database base oracle 10g Rel2 across Server 2000 platform,
Made a New Installationof Oracle Apex 3.1 on HP-Unix PA-RISC and database is oracle 10g Rel2(New Server),
Sucessfully...
my Question is
what is the Best Method to move the Applcations to a New Server ?
1) Using Export/Import option .can I move the Applications/ Reports to New Server?
2) Is it possible By Taking Application level Export and Import to the new Server?
3)Do I need to create the Workspace as similar to old Server then Move the ApplicationS?
or taking the Application EXPORT/IMPORT also imports the Workspace?
(OR)
Do I need to import the Database tables taking table level Dumps as well?
THANKS ALOT in Advance
MKZ
Edited by: Z on Dec 31, 2008 12:10 PM
Edited by: Z on Dec 31, 2008 12:57 PM

Hello:
You pretty much have it right. Here's what I do to move applications between APEX installations.
1) Export/Import Workspaces
2) Export/Import Applications for each workspace. (I retain the source application id in the target)
3) Export/Import Workspace Images/Files etc
4) Use Oracle exp/imp , Oracle DataPump or plain old sqlplus scripts to move database objects from source to target.
Varad

Similar Messages

  • What is the difference between on new focus and do prepare out put methods

    Hi,
    what is the difference between on new focus and do prepare out put methods.

    Hi Divya,
    DO_PREPARE_OUTPUT method is triggered each time the view is prepared after each event. Normally we redefine this method in order default the initial values based upon the parameter iv_first_time = 'X'. There can be certain other scenarios like putting data validations where this method can be helpful.
    For details on ON_NEW_FOCUS, refer to this [thread|on_new_focus event;
    Thanks
    Vishal

  • What is the need of creating New order type in PO

    Dear Experts,
                 I have a doubt in MM, what is the need of creating New Order Types?  Please explain with Business scenario.  Thanking you,
    Regards,
    Elangovan.A

    Hi Elangovan
    Whenever you have a doubt like this...
    --- just verify the config settings for your parameter (order type here).
    ---Also check whether authorizations can be given for this ?
    ---Do you need it for specific analysis ? Are there standard reports/listings available ?
    So, some of the uses of order type are:
    1) What are the parameters controlled by order type ?
    It controls the number ranges and screen layouts etc. So, if you want to have different set of number ranges and different screen settings, then you may need a new order type.
    2) Authorizations can be controlled with order type.
    3) You can also use it in analysis/listings
    Best regards
    Ramki

  • What is the impact on an Exchange server when moving FSMO role and schema master into another DC?

    What is the impact on an Exchange server when moving FSMO role and schema master into another DC? What do we have to do on exchange after performing a such task?
    I had 1 DC (Windows server 2008 R2), 1 Exchange 2010 SP3. I install a new DC (Windows server 2008 R2). I then move all the FSMO role including the schema master role into the NEW DC. I check to be sure that the new DC is a GC as well.
    I shutdown the old DC and my Exchange server was not working properly and specially Exchange Management Shell. It start working again after I turn up the older DC.
    I am wondering why Exchange did not recognize the new DC, even after moving all the roles on it.
    I am looking to hearing from you guys.
    Thanks a lot

    if you only have 1 DC, you might need to cycle the AD Topology service after shutting the one down.
    Also, take a look in the windows logs, there should be an event where Exchange goes to discover Domain Controllers, make sure both are listed there.  You can probably force that by cycling AD topology (this will take all services down so be careful
    when you do it)
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread

  • What is the Difference between ?  new Operator and Class.forName() ???

    plz tel me ....
    what is the Difference between ? new Operator and Class.forName() ??? ........

    Class.forName(), takes the class name as parameter,
    and loads that class in memory. But it doesn't create
    any instance of that class.
    That means static methods/variables are available for
    use.
    new keyword, checks if the class is loaded, if not
    then loads that class, and then creates an instance
    of that class.Class.forName actually returns the class object for that name (class - for -name). it might load it, if the class hasn't already been loaded, but it's misleading to say that's what that method does
    your definition of 'new' is wrong, too. give the dukes back

  • What are the Admin Parameters in Weblogic server?

    What are the Admin Parameters in Weblogic server?

    Hi,
    Can you explain what specifically are you looking for? Are you looking for parameters to weblogic.Admin command or something else?
    Anil

  • What are the advantages to adding a server to my home/home office system?

    What are the advantages to adding a server to my home/home office system?

    It's hard to give you specific answers unless we know your current setup. Any server, or specifically OS X server, may not be appropriate for your workflow.
    A server is a centralized computer which can act as a file repository for other computers and devices to access. It can also centrally manage authentication for other resources (ie, have a single sign in for multiple services), can act as a web server, a calendar server, and other features. Of course, many of those things are available from other providers, but having your own server means that you have more control (and responsibility) over them.
    This is a good place to start:
    https://www.apple.com/osx/server/
    Matt

  • What is the use of at new statement?

    What is the use of at new statement?

    Hi,
    AT - itab
    Syntax
    LOOP AT itab result ...
      [AT FIRST.
       ENDAT.]
        [AT NEW comp1.
         ENDAT.
           [AT NEW comp2.
           ENDAT.
           AT END OF comp2.
           ENDAT.]
         AT END OF comp1.
         ENDAT.]
      [AT LAST.
      ENDAT.]
    ENDLOOP.
    Extras:
    1. ...  FIRST
    2. ... |{END OF} compi
    3. ...  LAST
    Effect
    The statement block of a LOOP loop can contain control structures for control level processing. The respective control statement is AT. The statements AT and ENDAT define statement blocks that are executed at control breaks, that is, when the control structure is changed. The additions to the AT statements determine the control break at which their statement blocks are executed. Within these statement blocks, the statement SUM can be specified to add together the numeric components of a control level. For the output behavior result, the same applies as for LOOP AT.
    The prerequisite for control level processing is that the internal table is sorted in exactly the same sequence as the component of its line type - that is, first in accordance with the first component, then in accordance with the second component, and so on. The line structure and the corresponding sorting sequence gives a group structure of the content of the internal table, whose levels can be evaluated using AT statements. The AT- ENDAT control structures must be aligned one after the other, in accordance with the group structure.
    The statement blocks within the AT- ENDAT control structures are listed if an appropriate control break is made in the current table line. Statements in the LOOP- ENDLOOP control structure that are not executed within an AT- ENDAT control structure are executed in each pass of the loop.
    In order that control level processing is carried out properly, the following rules must be observed:
    After LOOP, a restricting condition cond can only be specified if this selects a consecutive line block of the internal table. Otherwise, the behavior of control level processing is undefined.
    The internal table cannot be modified within the LOOP loop.
    A work area wa specified in the LOOP statement after the addition INTO must be compatible with the line type of the table.
    The content of a work area wa specified after the addition INTO in the LOOP statement must not be modified.
    If the INTO addition is used in the LOOP statement to assign the content of the current line to a work area wa, its content is changed upon entry into the AT-ENDAT control structure as follows:
    The components of the current control key remain unchanged.
    All components with a character-type, flat data type to the right of the current control key are set to character "*" in every position.
    All the other components to the right of the current control key are set to their initial value.
    When the AT-ENDAT control structure is exited, the content of the current table line is assigned to the entire work area wa.
    Addition 1
    ... FIRST
    Effect
    The control level is defined by the first line of the internal table. The control break takes place when this line is read.
    Note
    In the group level AT FIRST, the current group key contains no components and all character-type components of the work area wa are filled with "*" and all remaining components are set to their initial value.
    Addition 2
    ... |{END OF} compi/>
    Effect
    : Control levels are defined by the beginning or end of a group of lines with the same content in the component compi (where i = 1, 2, and so on) and in the components to the left of compi. The control breaks take place when the content of the component compi or another component to the left of compi changes.
    The compi components can be specified as described in Specification of Components, with the limitation that access to object attributes is not possible here.
    Note
    If the INTO or ASSIGNING additions are used in the LOOP statement, a field symbol can be entered after AT |{END OF} outside classes, to which the corresponding component of the work area wa or the field symbol <fs> is assigned. This form of dynamic component specification is obsolete and has been replaced by specification in the format (name).
    Addition 3
    ... LAST
    Effect
    : The control level is defined by the last line of the internal table. The control break takes place when this line is read.
    Note
    In the group level AT LAST, the current group key contains no components and all character-type components of the work area wa are filled with "*" and all remaining components are set to their initial value.
    Regards,
    Prashant

  • Hi, when setting Safari, what is the meaning of "Open New Tabs in Background"? Thank you.

    hi, when setting Safari, what is the meaning of "Open New Tabs in Background"? Thank you.

    Previously, whenever you wanted to open a new browser window in mobile Safari, or whenever you tapped a link from within another app, Safari created a new page.
    But in IOS 5 things have changed, you now have 'open new tabs in background, a great feature.
    On any browser window that you have selected in Safari or any linked windows, you open Safari on iPad/iTouch or iPhone you have tabbed browser windows and can go to any of the sites without having to open up a new safari window.
    It saves you time.

  • What are the prerequisites  to create New Depreciation areas

    Hi SAP experts,
    I would like to know what are the prerequisites to create new depreciation areas and what is the configuration for this in details.
    Thanks & Regards
    Mouly

    Hi Mouly,
    The pre- requisite for creation of depreciation area are
    - Reporting of depreciation as per different laws i.e in india, we need to report depn as per Ind accounting standards, as per income tax act, etc
    - Whether we are using parallel currency or not for that company code.
    Regards
    Vivek

  • What is the passing mark for new BO Certification exams

    Hi,
    What is the passing percentage for new BO certifcation exam for Web Intelligence. Exam Code is C_BOWI_30.
    Thanks,
    CD

    If you search on internet you will get your solution its 75%. try : http://www.forumtopics.com/busobj/viewtopic.php?p=741799

  • What is the migration path to Lion Server from Mac Mini Snow Leopard Server

    I've currently got a mac mini server happily serving wikis/blogs... what is the update path to Lion Server?

    excellent resource! thanks!
    my mac mini server got stuck after lion install but before running server set up...
    I had to reset the PRAM (http://support.apple.com/kb/ht1379) before I could get control of the server back.

  • What is the imcoming and outgoing mail server for list.ru

    what is the imcoming and outgoing mail server for list.ru

    Contact your email service provider for that information. It's not a Firefox support issue.

  • What's the range of this new router from apple?

    what's the range of this new router from apple?

    One, it would help to specifiy which specific model/device.
    Two, reading the specs page for the device likely would answer the question.
    Three, what in the heck does this have to do with iTunes for Windows, the forum to which this silly question was posted?

  • HT4759 What is the i-cloud e-mail server name  ??????????

    What is the i-cloud e-mail server name,   my windows 7 pc  won't receive i-cloud e-mails

    Click here for information.
    (87379)

Maybe you are looking for

  • Can CAS array include server in DR site

    Hi, there: Our current Exchange 2010 environment: 1): Two HUB/CAS Exchange 2010 server running on Windows 2008 R2 use NLB to form a CAS array. 2): Two Exchange 2010 Mailbox server with one DAG. Please note all of these Exchange 2010 servers are on ou

  • Zen goes to blackscreen after charging during songs

    I have a 32 gb x-fi and for some reason after I fully charge it, the screen goes black only a few minutes later. I cannot turn it off either, and am forced to hit the reset button. It then rebuilds and then the process repeats itself and I'm lucky if

  • "the device is not connected. Please connect your Zen MicroPhoto to your computer" ?

    Hi I have just bought it today, and the installation went thru without any trouble. Then when I connected my mp3 player as the book says I for one cant install it (since there's no driver for it) and when I look in the 'Zen MicroPhoto Media Explorer'

  • Missing storage from icloud??

    Hello, can anyone please explain the issue? I have a 2.1 GB of iPhone backup on icloud and it hows me that my icloud drive is full... I have even erased my icloud account and started from scratch but still missing around 2 GB... I tried everything...

  • Create a properties file

    Hi How do I create a properties file in my project using JDeveloper 9.0.3. Right now, I'm creating the file through explorer and then adding it to the project, via the menu bar. But there has to be a simpler way to do this. Thanks, Sergio Bastos