Whats the quickest way to export packages,tables etc from one enviroment

Hi
whats the quickest way of more loads of packages, tables, indexes etc. from one enviroment to another?
I did some things in apex.oracle.com workspace to test apex now I want to move it across to my xe installation.

Hello,
2 'fast' options really -
1) Export of application + Export/DataPump of schema
This works if you want a complete 'mirror' from one environment to another of the schema objects
2) Supporting Objects
Bundle all your requirements together with the application export.
The Supporting Objects feature absolutely rocks and yet very very (very!) few people seem to use it.
John.
http://jes.blogs.shellprompt.net
http://apex-evangelists.com

Similar Messages

  • What is the easiest way to export all tables data from Oracle to MS SQL Server?

    Hello MS,
    I would like to export all tables from Oracle 11.2 to MS SQL Server 2012 R1.
    Using the tool "Microsoft SQL Server Migration Assistant v6.0 for Oracle" did not work for me because there are too many warnings and errors regarding the schema creation (MS cannot know it because they are not the schema designer). My idea is
    to leave/skip the schema creation to the application designer/supplier and instead concentrate on the Oracle data export and MS SQL data import.
    What is the easiest way to export all tables data from Oracle to MS SQL Server quickly?
    Is it:
    - the „MS SQL Import and Export Data“ Tool
    - the “MS SQL Integration Services” Tool
    - not Oracle dump *.dmp format because it is a propritery binary format
    - flat file *.csv (delimited format)
    Thanks!

    Hi lingodingo,
    If you want to directly export all tables from Oracle database to SQL Server, I suggest you use SQL Server Import and Export Wizard. Because you just need to follow the wizard with GUI, this is the easiest way.
    If you want to make some modification for the tables‘ data before loading to SQL Server, I suggest you use SQL Server Integration Services package. For more details, please refer to the following similar thread:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/38b2bed2-9d4e-48d4-a33f-1d9eed1c062d/flat-file-to-sql-server?forum=sqldatamining
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Whats the best way to export a table.

    Hi guys
    i have a table with over 20 millions record in it. i want to export that table.
    my question is what is they best and fastest way to export this table and how much time it will take to export?
    Asif

    when i execute the export command i got the following error
    /u01/oracle/product/8.1.7/bin/exp dss/vox file=/usr/invoice_line_hist.dmp direct=Y feedback=25000 buffer=1000000 log=/usr/invoiceg
    Export: Release 8.1.7.4.0 - Production on Fri Dec 16 14:00:55 2005
    (c) Copyright 2000 Oracle Corporation. All rights reserved.
    Connected to: Oracle8i Enterprise Edition Release 8.1.7.4.0 - Production
    With the Partitioning option
    JServer Release 8.1.7.4.0 - Production
    EXP-00041: Export done in server's UTF8, different from user's
    character set US7ASCII
    EXP-00000: Export terminated unsuccessfully
    What should i do to get rid of this problem.

  • What the best way to call twenty tuxedo domains from one weblogic server use WTC

    I need to call twenty tuxedo domains from one weblogic server use
    WTC. the Service be called in the twenty tuxdo domains are same, do I need to
    write twenty EJB in the weblogic server to call the same service? who have good
    adea to deal with this problem?

    Hi,
    I have a question on the second case. When the client doesn't care of which
    Tuxedo domain it is hitting. What happens if one of the Tux domain is down ? What
    happens to the client request to that domain ?
    Another question is lets say i have a Tuxedo configuration as MP mode( Multi
    machine mode) how does WTC load balance between the Tuxedo domains.
    Thanks,
    Srinivas
    "A. Honghsi Lo" <[email protected]> wrote:
    Hi xcjing,
    One way to handle your needs is to use local service name to remote
    reservice name translation. For instance,
    (in 6.1,6.0 WLS)
    <T_DM_IMPORT ResourceName="TOUPPER1" LocalAccessPoint="WTC"
    RemoteAccessPointList="TUX-DOM1">
         <RemoteName>TOUPPER</RemoteName>
    </T_DM_IMPORT>
    <T_DM_IMPORT ResourceName="TOUPPER2" LocalAccessPoint="WTC"
    RemoteAccessPointList="TUX-DOM2">
         <RemoteName>TOUPPER</RemoteName>
    </T_DM_IMPORT>
    <T_DM_IMPORT ResourceName="TOUPPER3" LocalAccessPoint="WTC"
    RemoteAccessPointList="TUX-DOM3">
         <RemoteName>TOUPPER</RemoteName>
    </T_DM_IMPORT>
    etc
    With this configuration if your client have to call "TOUPPER" service
    in
    TUX-DOM1 then you code your client to call "TOUPPER1" and the request
    will be routed to TUX-DOM1. The same way for request has to go to
    TUX-DOM3, your client calls "TOUPPER3" service and WTC will route it
    to
    TUX-DOM3. In this remote name translation you may have to write 20 EJB
    although they are almost the same. However, if your EJB can analyze
    your client input to decide which Remote Tuxedo Domain to send the
    service request to then you probably only need one EJB.
    In the case that your client does not care which remote Tuxedo Domain
    provides the service then adding
    <T_DM_IMPORT ResourceName="TOLOWER" LocalAccessPoint="WTC"
    RemoteAccessPointList="TUX-DOM1">
         <RemoteName>TOLOWER</RemoteName>
    </T_DM_IMPORT>
    <T_DM_IMPORT ResourceName="TOLOWER" LocalAccessPoint="WTC"
    RemoteAccessPointList="TUX-DOM2">
         <RemoteName>TOLOWER</RemoteName>
    </T_DM_IMPORT>
    <T_DM_IMPORT ResourceName="TOLOWER" LocalAccessPoint="WTC"
    RemoteAccessPointList="TUX-DOM3">
         <RemoteName>TOLOWEr</RemoteName>
    </T_DM_IMPORT>
    etc
    Will load balance your client "TOLOWER" service request among your 20
    remote Tuxedo Domain.
    However, there is a bug in WTC that causes the Remote Service Name
    translation functionality not working properly. It is fixed in the
    upcoming release of WLS.
    Honghsi :-)
    xcjing wrote:
    Thank you very much! But I still have question, give an example,
    twenty Tuxedo domain is named domain1,domain2,....domain20. The
    same Tuxedo Service: TOUPPER is deploy on those twenty Tuxedo domains,some time
    I need call the TOUPPER Service on domain1,saome time I need call theTOUPPER
    Service on domain3 or
    other domain depend on the input from client. you mean I need to importThe TOUPPER
    Service from twenty Tuxedo domains in the console,then write one EJBto call the
    TOUPPER Service,but how can the EJB know which Tuxedo domain's TOUPPERto call
    from?
    Thank you!
    "A. Honghsi Lo" <[email protected]> wrote:
    hi xcjing,
    You don't have to write 20 beans or deploy 20 beans because there
    are
    20
    remote Tuxedo TDomain you need get the service from. Of course, WLSand
    WTC does not prohibit you from doing it though. Whether you need20
    beans or not depend more on you architecture.
    To access 20 remote Tuxedo Domain from one single WLS with singleWTC
    you can configure 20 remote Tuxedo Domain in the BDMCONFIG (6.1,6.0)
    or
    from the console (7.0). You import 20 services one from each remote
    Tuxedo domain. You write one bean, and deploy one bean. Your WLS
    clients will be able to access THE ejb, the EJB will access the WTC
    service, and WTC will load balanced the service requests among the20
    remote Tuxedo Domain.
    Regards,
    honghsi :-)
    xcjing wrote:
    I need to call twenty tuxedo domains from one weblogic server use
    WTC. the Service be called in the twenty tuxdo domains are same,
    do
    I need to
    write twenty EJB in the weblogic server to call the same service?
    who
    have good
    adea to deal with this problem?

  • Whats the best way to export Quality flash video .flv?

    Hi Everyone,
    Whats the best way to export a very good quality video flash.
    I tried several settings in the flash export in FCP, but it comes sort of dithered or slightly pixilated.
    I see these great clear videos on the net and I wish I can export as good qiality.
    I would really appreciate if some one gives me the right settings..
    eg> size, bit rate and all..
    Many thnx

    http://www.macromedia.com/software/flash/flashpro/video/

  • What the best way to export.

    I have been using FCE for two years now and smooth sailing. Two years ago I made a DVD for 1 hour 30 mins long. Its been awhile since that project. im currently making another possible up to 2 hours.
    now my question.
    Question #1. what is the best was to export the project file so i can use it for idvd? there is lots of options just want to make sure i get the right one. the DVD is for commerical sale just want it to be right.
    Question #2. Would it be possible to export a project file to a video camera using FCE?
    thank jim.

    1 - Normally the best way to export your project for iDVD is to export to *QuickTime Movie.* If iDVD is on the same computer as FCE, then you can export a QT reference movie (when you export, UNcheck the option called "Make Movie Self-Contained". Don't export to QuickTime Conversion if you plan to burn a DVD of your video.
    However, before you export your sequence, do both of the following in FCE:
    *Sequence > Render All > Both*
    *Sequence > Render Only > Mixdown*
    Then save your project
    Then export
    In iDVD you can put up to 2 hours on a single-layer DVD or up to 4 hours on a dual-layer DVD.
    2 - You can record an FCE sequence back to tape if you are using a miniDV camcorder.

  • Whats the quickest way to remove duplcate song entries?

    Is there a quicker way to remove duplicate song entries in itunes? Also, sometimes when I went to remove them manually then play them later itunes said it could not find the original file of the song that I left??? Any/all help is greatly appreciated, cheers Paul

    Hello,
    2 'fast' options really -
    1) Export of application + Export/DataPump of schema
    This works if you want a complete 'mirror' from one environment to another of the schema objects
    2) Supporting Objects
    Bundle all your requirements together with the application export.
    The Supporting Objects feature absolutely rocks and yet very very (very!) few people seem to use it.
    John.
    http://jes.blogs.shellprompt.net
    http://apex-evangelists.com

  • What is the best way to move an iPhoto library from one internal drive to another internal drive?

    the drive where my iPhoto library is store is just about full.  I have a second internal SSD that I'd like to move (not copy) the library to.  What is the best way to do that and still ensure that iPhoto will access the library in its new location?

    Just drag the iPhoto Library package from the one drive to the second disk.  Launch iPhoto with the Option key held down and select the library in it's new location on the second disk.  Once you're satisfied that it is working satisfactorliy you can delete the copy on the first disk.
    OT

  • Cansomeone please tell me what the simplest way is to backup your files from you Mac and then completely restore it back to when I first bought it? I do not want to download or purchase any software, and I would like to keep my important files-pics, music

    I just would like to completely reset my MAC. I dont want to have to download or purchase a software to download, and I dont quite understand what the time machine is supposed to do if you have not been told to use if before. Shouldn't mac have some type of in home software already installed? And how can I completely restore my mac back to its original system?

    1: Connect a external powered drive like a Firewire or USB drive. If you question the drive format or need to format it, first do that in Disk Utility before transfering any files to the drive. MSDOS, FAT32 or exFAT is best for any Windows or Mac to access the files.
    2: Transfer your files manually by dragging and dropping your Users Folders like Pictures, Movies, Documents and Music (do not use TimeMachine!!) Eject the drive and disconnect from the computer.
    3: Next insert the cd that came with your computer and reboot holding c
    4: Two screens in is a menu option called "Utilities" select Disk Utility.
    5: On the left is your internal boot drive, select it and Erase > Format HFS+ Journaled > Security Option > Zero All Data. Wait about a hour or so until it's finished.
    6: When it's done, quit and your back in the installer again, install OS X and when finished, shut down.
    The next time the computer reboots, it will go through the "welcome" video and the initial setup, just like a new Mac.

  • EXPORT/IMPORT TABLE DATA FROM ONE SCHEMA TO ANOTHER ONE (S.O.S)

    Hi,
    I urgently need your help:(, I have two different instances, in each of them there are two schemas, A and B; which tables are the same, but I need to transfer JUST the table data from A's tables to B's tables, how can I do so??
    Thanks in advance,
    Isabel

    The total number of tables is 989:(And how many do you want ? If 988, and if you're on a 10g db, you can use exclude parameter from expdp/impdp?
    Nicolas.

  • Simple beginner's question: What's the quickest way to export a single clip?

    I've started using Premier Elements because this was taking too long on my previous editor.
    I'm a piano teacher who uses video as one of the aids for my pupils, and I often record a whole book in one sitting, announcing the titles of the pieces as I go, then clipping my announcmeents (and false starts, swearing, etc) when editing, and adding text titles instead. These are then uploaded to pupils'own poages on my teaching website.
    However, many of my pupils want to work from single clips.
    My previous method was to keep deleting everything from the project except the clip I want, processing that, then opening the project again withut saving. This seems to me a complete waste of my time if I can export one clip at a time.
    I've only been using Premier Elements one day, so maybe there's something obvius I've missed! Someone, please tell me there's a quicker way than what I'm doing! There might be up to 40 clips in one video

    Thanks, Bill! Actually version 9 looks a little clearer than that, as it has two bold clear white paddles to mark the edge of the work area.
    I was a little frustrated at first, because whatever I did, it still took a year and exported the entire video.
    Then:
    I caught sight of this teeny tiny box waiting for a tick from me, which said:
    Share Work area Bar Only
    We have lift-off 
    Thanks again. So much quicker than all that deleting ahnd hoping you don't accidentally say "yes" when prompted to save changes!

  • What is the best way to export to ipad 3 from FCP7.03

    Looking for help with the best export settings for a five minute 1920x1080 video to play on the ipad.
    Editing in FCP7.03

    Best way is to export using Quicktime Movie and take your file into Compressor and choose the ipad / iphone4 setting under Apple devices.
    DM

  • What's the simplest way to export a single frame from an animated gif as gif?

    i have an animated gif and wish to save a single frame as a non-animated gif.
    in the past i've been achieving this by deleting all the frames i don't wish to export and deleting them before exerting, this seems very clumsy though so i figure there's a more sensible solution in there somewhere, but where?

    Thanks, Bill! Actually version 9 looks a little clearer than that, as it has two bold clear white paddles to mark the edge of the work area.
    I was a little frustrated at first, because whatever I did, it still took a year and exported the entire video.
    Then:
    I caught sight of this teeny tiny box waiting for a tick from me, which said:
    Share Work area Bar Only
    We have lift-off 
    Thanks again. So much quicker than all that deleting ahnd hoping you don't accidentally say "yes" when prompted to save changes!

  • Whats the easiest way to migrate my itunes data from old failing PC to new PC so I can sync on new PC?

    I have a failing PC that I sync my Ipad and Iphone to now. I have a new PC that I want to start using for this function. How do I migrate my Itunes Data Etc...so that I can sync on the new PC and not lose my apps, music, pics etc....There has to be a simple-stupid way of doing this. I have already downloaded Itunes on the new PC and just waiting for an answer to go forward.

    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    If you have an iOS device that syncs with contact & calendar data on your computer you should migrate this information too. If that isn't possible create a dummy entry of each type in your new profile and iTunes should offer to merge the existing data from the device into the computer, otherwise the danger is that it will wipe the information from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library, or a backup of it, then see Recover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data.
    tt2

  • What is the best way to move an aperture library from one full drive to an external drive?

    Just want to make sure I move my existing Aperture library on my internal drive (which is full) correctly to an external drive that has plenty of space. 
    Thanks for the help!

    As I use a MBP with limited internal drive space, my approach is to have the image files on an external drive, while leaving the library itself on my internal drive. The library takes up about 80GB while the images are closer to 1TB.
    The library always contains 'Thumbnails' of the images which it shows in place of the disconnected image files.
    This means I can still open the library even when the external drive is not attached, and I can still do keywording and rating and organising and so on.
    I also maintain 'Previews' for my best images. Previews are like thumbnails but larger in size and can be shared with other apps, so I can still use and share these copies of the images, again even while the external drive is not attached.
    I don't like the idea of having the actual library on an external drive connected to a laptop (although I have done so from time to time without issue). There's always a chance it can become accidentially disconnected (kids, pets, etc) and if this happens while using Aperture it can corrupt your library. A corrupted library can be repaired with Apertures first aid tools, but it's better to avoid it in the frist place when you can.

Maybe you are looking for

  • LaserJet M1132 installati​on on Windows 7 hangs on "Preinstal​ling drivers...​"

    I cannot install a Laserjet M1132 on my 64-bit Lenovo X240 running Windows 7. I am trying to use the USB installer, which appears as a CD drive on my computer. Because I have turned AutoPlay off, I run the executable installer. The installation proce

  • Alloting freight on item cost on basis of volume(diffrent way)

    Hi all During GRPO the client wants to allocate freight, custom duty on the cost of item. The allocation of freight should be on the basis of CBM/ Volume. The calculation is shown below: Item           custom duty     CBM/Volume       qty    unit pri

  • MBA lion Mail issue: window disappears randomly

    hello: Having some MBA 13' mail issues: 1) mail window will disappear (only using cmd+0 shortcut will bring it back - or going to window>message viewer) randomly without any reason 2) starting up a new email or new note then closing this note or emai

  • HT4623 iOS 5.1.1 is the latest software I have.

    I currently have iOS 5.1.1 but it is not the latest software and I am getting the message that it is so I am unable to update???

  • 3gs ios 6 playlist not updating

    i have smart playlist in my itunes with rules playcount = 0 i'm able to sync the songs in the playlist to my 3gs but the playlist in 3gs did not remove the song from the playlist when the song has been played once or twice. but when i sync back to my