Unloading swf between two swfs.

I have a UI that loads swf in the content area when several
buttons are clicked (these buttons are menu1, menu2 et.c) the code
is as follows and it is working fine...
import fl.controls.Button;
import flash.display.Loader;
import flash.net.URLRequest;
import flash.events.MouseEvent;
var loader = new Loader();
var swfFile:String = new String();
swfFile = "blank.swf";
var req:URLRequest = new URLRequest(swfFile);
loader.load(req);
addChildAt(loader,1);
menu1.addEventListener(MouseEvent.MOUSE_UP,menuRelease);
menu2.addEventListener(MouseEvent.MOUSE_UP,menuRelease);
menu3.addEventListener(MouseEvent.MOUSE_UP,menuRelease);
menu4.addEventListener(MouseEvent.MOUSE_UP,menuRelease);
function menuRelease(e:Event):void {
this.removeChildAt(1);
if (e.target.name == "menu1") {
swfFile = "FM_main_menu_beta01.swf";
} else if (e.target.name == "menu2") {
swfFile = "FM_plan_menu_beta01.swf";
} else if (e.target.name == "menu3") {
swfFile = "FM_activity_menu_beta01.swf";
} else {
System.exit(0);
req = new URLRequest(swfFile);
loader.load(req);
this.addChildAt(loader,1);
So clicking the first button brings up a main menu in the
main content area...with four menu options (buttons labelled
mainMenu1, mainMenu2 etc.) When you click one of these main menu
options, the corresponding swf should be loaded in place of the
main menu (in the main contant area).
However this is not happening and the main menu is staying
around and not being unloaded. Is this because the main menu swf is
in a loader created in the parent swf, but the main menu loader is
in the main menu swf. So I think in effect i have two loaders
appearing at the same time.
import fl.controls.Button;
import flash.display.Loader;
import flash.net.URLRequest;
import flash.events.MouseEvent;
var swfFile:String = new String();
swfFile = "blank.swf";
var req:URLRequest = new URLRequest(swfFile);
var loader = new Loader();
removeChildAt(1);
loader.load(req);
addChildAt(loader,1);
mainMenu1.addEventListener(MouseEvent.MOUSE_UP,menuRelease);
mainMenu2.addEventListener(MouseEvent.MOUSE_UP,menuRelease);
mainMenu3.addEventListener(MouseEvent.MOUSE_UP,menuRelease);
mainMenu4.addEventListener(MouseEvent.MOUSE_UP,menuRelease);
function menuRelease(e:Event):void {
removeChildAt(1);
if (e.target.name == "mainMenu1") {
swfFile = "FM_plan_menu_beta01.swf";
} else if (e.target.name == "mainMenu2") {
swfFile = "FM_activity_menu_beta01.swf";
} else if (e.target.name == "mainMenu3") {
swfFile = "blank.swf";
} else {
swfFile = "blank.swf";
req = new URLRequest(swfFile);
loader.load(req);
addChildAt(loader,1);
}

bump

Similar Messages

  • How can I pass a variable(s) between two swfs?

    Hello all,
    I was wondering if it is possible to pass variables between
    two standalone swfs that are not being hosted on a webserver.
    I am creating a flash projector to go on a CD Rom and want to
    load another swf into the _root level and in the process, want to
    pass a variable or two to the "new" swf that is being loaded. Any
    help or insights that you can offer would be greatly appreciated!
    Thanks for your help.
    Tim

    if by _root level you mean you're loading something into
    _level0 you can't won't be able to use the localconnection. the
    sharedobject is your only option.

  • [Unload SWF] appears in console and hangs app

    Occasionally, "[Unload SWF] path:main-debug.swf" appears and
    kills any HTTPService calls that are made.
    The app behaves as such:
    1. About 4 HTTPService calls are made at once, using
    different HTTPService instances.
    2. Occasionally, in the debug console a "[Unload SWF]..."
    appears, showing the path to my app. Sometimes it appears once for
    every webservice call that I make.
    3. Each webservice that gets the "[Unload SWF]" will never
    return and hangs forever.
    Sometimes, I'll also see a "[SWF] path:main-debug.swf"
    message in the console, at which point the webservices will hang
    again. If I click "Cancel" in my app, then try it again, they will
    sometimes magically work (and I don't get those [Unload SWF]
    messages).
    Any help would be greatly appreciated!
    -Michael Whitaker:confused;

    Unbelievable...
    I think I may have found the problem and solution:
    The way I was using the HTTPService component was through a
    seperate class which itself contained the httpservice that I was
    instantiating and calling on a per-need basis. The function I was
    using to call my web service needs accepted two function pointers
    (or Function types) which were called on a ResultEvent or a
    FaultEvent (from the HTTPService). I was using lamba functions
    (inline functions) in the method call. That is what seemed to be
    the problem. As soon as I moved the lamba functions outside ,into
    real functions, and just passed their reference through my method,
    everything worked.
    I've noticed several problems with lamba functions, all of
    which are very unfortunate (because I would use them more, but they
    are so buggy):
    1. A lamba function sometimes has some weird scope. At times
    calling "this.something" fails from within the lamba function as
    'this' is null. Ex:
    class Bob
    public Bob()
    this.addEventListener(Event.ENTER_FRAME,
    function(e:Event):void { trace("this: " + this.toString()); },
    false, 0, true);
    (Note: this is 1% psudo code (uncompiled).) "this" will
    sometimes be null (depending on where the lamba is used).
    2. If, using the above code, you were to instantiate several
    Bobs at a time, and add them to the displaylist, sometimes only ONE
    of the instances will actually call their lamba function on
    enterframe; the others won't. I'm not sure why this happens, but I
    think multiple instances of the same class using a lamba function
    tends to conflict in memory or something. (or in the special
    lamba-scope).
    3. At times, as per my problem in this thread, a lamba
    function won't even be called. I've solved this by pulling out the
    lamba functions and placing them in real functions, then just
    passing the pointer across.
    I guess the debugger sending [Unload SWF] and [SWF] messages
    were just a coincidence (unless they somehow affect lamba
    functions). I'm going to continue testing this to verify that the
    problem has gone away. If it hasn't, I'll probably start a new
    thread.
    Thanks for your help mike_morearty!

  • Loading and unloading swf

    I am making a site and I want each button to load an swf,
    which would be the content of each page. When I click on each
    button the swf will load, however, the old swf will not go away.
    how does one do this. Thanks.

    It looks like you are adding the newly loaded swf, but not
    removing the old one. So, maybe this change would help:
    function about_CLICK(myevent:MouseEvent):void{
    var loadMain:Loader = new Loader();
    loadMain.load(new URLRequest("clip0.swf"));
    // if there is a child on the display list remove it
    if (getChildAt(0) !=null) removeChildAt(0);
    stage.addChild(loadMain);
    I should mention, however, that there is a bug in Flash 9
    related to unloading swfs:
    http://www.gskinner.com/blog/archives/2008/04/failure_to_unlo.html
    However, I don't think this is affecting your visible
    behavior.

  • Loader, Unload SWF and Warning: Ignoring 'secure' attribute........

    Hey all
    I was just simply trying to load one swf into another.  in my document class I have the following line of code in my constructor.
    var loadBoard:LoadBoard = new LoadBoard("Directory.swf");
    in my LoadBoard class:
    package com.myproject
         import flash.display.Loader;
         import flash.display.MovieClip;
         import flash.net.URLRequest;
         public class LoadBoard extends MovieClip
              public function LoadBoard(nameOfBoard:String)
                   var boardLoader:Loader = new Loader();
                   addChild(boardLoader);
                   boardLoader.load(new URLRequest(nameOfBoard));
                   trace("swf should be loaded");
    In my console I get the following when I debug"
    [SWF] U:\fullPath\Directory.swf - 69,058 bytes after decompression
    [SWF] U:\fullPath\Directory.swf - 2,067 bytes after decompression
    [SWF] U:\fullPath\Directory.swf - 322,606 bytes after decompression
    [SWF] U:\fullPath\Directory.swf - 112,558 bytes after decompression
    [Unload SWF] U:\fullPath\Directory.swf
    Warning: Ignoring 'secure' attribute in policy file from http://fpdownload.adobe.com/pub/swz/crossdomain.xml.  The 'secure' attribute is only permitted in HTTPS and socket policy files.  See http://www.adobe.com/go/strict_policy_files for details.
    Not sure why I am getting this warning, when I googled it, the erro has to do with trying to load a file from another domain. My Directory.swf file is in the same location as my main swf, the bin-debug folder.  Also the Directory.swf does not seem to load into my main swf as I don't see it show up in the flash player when i run my app.   I am also a little confused on the [Unload SWF], I am not doing anything to tell it to Unload my swf.
    I am using FB to do all my coding and debugging if that matters.
    Does anyone have any ideas.
    thanks,

    Apparently I was, so I changed it to classic text in my Directory.fla and that seemed to remove the weird error.  However it seem that my swf is still not loading.  any Ideas why that might be?
    [EDIT]  Ok, my Directory swf is defenatly loading. but not showing up in the display list. I updated my LoadBoard to the following.
    package com.aces
         import flash.display.Loader;
         import flash.display.MovieClip;
         import flash.events.Event;
         import flash.net.URLRequest;
         public class LoadBoard extends MovieClip
              public function LoadBoard(nameOfBoard:String)
                   var boardLoader:Loader = new Loader();
                   boardLoader.load(new URLRequest(nameOfBoard));
                   boardLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, finishLoading);
              public function finishLoading(loadEvent:Event):void
                   addChild(loadEvent.currentTarget.content);
                   trace("swf should be loaded");
    any Ideas?
    Thanks,

  • SWFLoader.unloadAndStop() - does it unload swf and release memory?

    Hi all,
    Do SWFLoader FP10 unloadAndStop() and GC really unload swf?
    I have simpliest test case possible when parent app creates new SWFLoader, loads sub app and then unloads it.
    Every time when it does it I see memory grows. The sub app is tiny:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
        <mx:Label id="idLabel" color="blue" text="This is embedded application."/>   
    </mx:Application>
    The parent application is also simple
    public function loadSwf(name:String):void
      loader.addEventListener(Event.COMPLETE, completeHandle, false, 0, true);   
      loader.showBusyCursor = true;
      loader.scaleContent = true;
      loader.source=name;     // name is subappswf.swf the
      loader.load();
    private function completeHandle(event:Event):void
      loader.removeEventListener(Event.COMPLETE, completeHandle);
      loader.unloadAndStop(true);
    Profiler shows decent Peak Memory and even Cumulative Memory does not seem horrible. There are no objects hanging in sub-application except SystemManager. But Google Chrom Task Manager shows the real picture:  Shockwave Flash memory grows and as soon it reaches threshold ~0.5 GB, application becomes unresponsive and eventually FP crashes.
    What else should be done to free up memory?
    Regards,
    Ilya

    This is iInteresting...
    /*** Unloads an image or SWF file. After this method returns the
    * <code>source</code> property will be null. This is only supported
    * if the host Flash Player is version 10 or greater. If the host Flash
    * Player is less than version 10, then this method will unload the
    * content the same way as if <code>source</code> was set to null.
    * This method attempts to unload SWF files by removing references to
    * EventDispatcher, NetConnection, Timer, Sound, or Video objects of the
    * child SWF file. As a result, the following occurs for the child SWF file
    * and the child SWF file's display list:
    * <ul>
    * <li>Sounds are stopped.</li>
    * <li>Stage event listeners are removed.</li>
    * <li>Event listeners for <code>enterFrame</code>,
    * <code>frameConstructed</code>, <code>exitFrame</code>,
    * <code>activate</code> and <code>deactivate</code> are removed.</li>
    * <li>Timers are stopped.</li>
    * <li>Camera and Microphone instances are detached</li>
    * <li>Movie clips are stopped.</li>
    * </ul>
    * @param invokeGarbageCollector Provides a hint to the garbage collector to run
    * on the child SWF objects (<code>true</code>) or not (<code>false</code>).
    * If you are unloading many objects asynchronously, setting the
    * <code>gc</code> parameter to <code>false</code> might improve application
    * performance. However, if the parameter is set to <code>false</code>, media
    * and display objects of the child SWF file might persist in memory after
    * the child SWF has been unloaded.
    public function unloadAndStop(invokeGarbageCollector:Boolean = true):void
    useUnloadAndStop =
    true;unloadAndStopGC = invokeGarbageCollector;
    source =
    null; // this will cause an unload unless autoload is true
    if (!autoLoad)load(
    null);}
    It means that if autoload is true (default) unload will not happen and sub-app
    will persist in memory.
    Regards,
    Ilya

  • Redirect [SWF] and [Unload SWF] trace?

    Hi all!
    I was wondering if there is a way to redirect or disable
    [SWF] and [Unload SWF] based messages when working with external
    SWFS.
    Ideally I would like to redirect trace statements, but I
    doubt that's possible.
    Thanks!

    I would like to add a question to this topic, but instead of describing it, I would like to refer to this forum, where it was described very good: http://www.gotoandlearnforum.com/viewtopic.php?f=33&t=28730
    In short:
    When the loader object is only referenced by a local variable within a method and there's no other reference to the loader, other than the EventListener, the loaded SWF file is being sporadically unloaded (by the GC perhaps) before I am able to access the loader.content! That's kind of a bug, I guess and not acceptable!
    So any help would be much appreciated!
    Regards,
    Matthias

  • [Unload SWF] - Automatically unloading a swf while loading - GC issue?

    Hi, I am trying to load a few style SWFs at runtime using the StyleManager.loadStyleDeclarations. There are more than 4 style SWFs and I load them through a for loop and add the IEventDispatcher to an array as a reference.. The files seem to load properly. But some times, some of the style SWFs are automatically unloaded . I see the [unload SWF] in the log... I am not sure how to avoid the files being GCed at the time of loading... Also it seems like they are being loaded/ decompressed twice. Please see the log below...
    [SWF] /Flex/com/../styles/Common.swf - 45,421 bytes after decompression
    [SWF] /Flex/com/../styles/StyleSkin.swf - 253,886 bytes after decompression
    [SWF] /Flex/com/../styles/StyleSkin_Fonts.swf - 440,292 bytes after decompression
    [SWF] /Flex/com/../styles/ StyleSkin _Assets.swf - 189,281 bytes after decompression
    [SWF] /Flex/com/../styles/ StyleSkin _Assets.swf - 1,153,335 bytes after decompression
    [SWF] /Flex/com/../styles/ Common.swf - 1,153,335 bytes after decompression
    [SWF] /Flex/com/../styles/ StyleSkin _Fonts.swf - 1,153,335 bytes after decompression
    [SWF] /Flex/com/../styles/ StyleSkin.swf - 1,153,335 bytes after decompression
    [Unload SWF] /Flex/com/marketlinx/mls/client/ui/styles/StyleSkin_Assets.swf
    [Unload SWF] /Flex/com/marketlinx/mls/client/ui/styles/Common.swf
    [Unload SWF] /Flex/com/marketlinx/mls/client/ui/styles/StyleSkin _Fonts.swf
    How can avoid the files being GCed. is it because I  re use a single Loader (loadStyleDeclaration) to load multiple files?

    Both the copies go away.. and I don't load them twice , only once through a loop and when i debug and see the for loop below is executed only once... Am I not doing it the right way? . I am failry new to Flex and I couldn't find why Flex loads it twice
    This is how try to load them in the application...
    for   (var index:uint = 0; index < styleSheetFiles.length; index++){
    styleSheetsLoaded[index] =
    false; 
    // Load the stylesheet files
    var styleSheetFileFullPath:String = STYLESHEET_FILE_BASE_PATH + (styleSheetFiles[index] as String);eventDispatchers[index] = StyleManager.loadStyleDeclarations(styleSheetFileFullPath)
    as IEventDispatcher; 
    trace("loading: index" + index + " file:" + styleSheetFileFullPath); 
    // It doesn't matter whether the result is complete or error
    (eventDispatchers[index]
    as IEventDispatcher).addEventListener(StyleEvent.COMPLETE, styleSheetFileLoaded);(eventDispatchers[index]
    as IEventDispatcher).addEventListener(StyleEvent.ERROR, styleSheetFileFailed);}
    In the complete event I try to trace that the particular file has been loaded to see whether it has been loaded... But i don''t see it there...

  • [SWF] and [Unload SWF] in Debug mode

    I am debugging my application and I am noticing some strange output in my console window.
    I will get the same line duplicated, it looks like this:
    [SWF] C:\Users\Me\Desktop\Development\flash\bin-debug\main.swf
    [SWF] C:\Users\Me\Desktop\Development\flash\bin-debug\main.swf
    [SWF] C:\Users\Me\Desktop\Development\flash\bin-debug\main.swf
    Then at a later state in the application I see this:
    [Unload SWF] C:\Users\ Me\Desktop\Development\flash\bin-debug\main.swf
    [Unload SWF] C:\Users\ Me\Desktop\Development\flash\bin-debug\main.swf
    [Unload SWF] C:\Users\ Me\Desktop\Development\flash\bin-debug\main.swf
    Can someone exaplain to me what this means, and why I see duplicates of the exact same lines?

    I would like to add a question to this topic, but instead of describing it, I would like to refer to this forum, where it was described very good: http://www.gotoandlearnforum.com/viewtopic.php?f=33&t=28730
    In short:
    When the loader object is only referenced by a local variable within a method and there's no other reference to the loader, other than the EventListener, the loaded SWF file is being sporadically unloaded (by the GC perhaps) before I am able to access the loader.content! That's kind of a bug, I guess and not acceptable!
    So any help would be much appreciated!
    Regards,
    Matthias

  • AIR Debugger crashing in Flash Builder [Unload SWF]?

    I'm using the latest 4.5 Flash Builder and have been working on an Android app for the Motorola Xoom.  It works great and the development environment is borderline flawless.  I have noticed one thing that keeps happening.  When running my app on the laptop OR the Xoom directly from FB it works great.  When I debug the app on my laptop it also works great, but sometimes when I try and debug on the device itself I get about 5 seconds of runtime and then the app mysteriously crashes on the device (goes to home screen) and the last thing shown in the console is [Unload SWF].
    Any ideas?  I have no doubt it is something I am doing but have been unable to find any solutions.
    Thank you!

    I have this problem but I have found the reason.
    I'm using external graphics from a .swc file. This problem appear when I'm loading an instance of a Movieclip that have inside another movieclip with property "visible" set to false. I have set it to true again on Flash, export again .swc, and set visible to false by code, while I have just created de object on run-time before add it to scene.

  • Need to load and unload swf from single htm file

    I need to load or unload swf file or we can say that i need load 3 project one by one in current window

    mit,
    So are you saying you need to have one swf file call a second file to play, then call a third to play...
    Which Captivate version are you using?
    Are the swf files all captivate published swf's?
    Do you have access to Flash Professional and if so what version?
    how are you running your file, is it scorm packaged or just html based?
    I may be able to help with your issue, but need these details.

  • Unloading swf but the swf sound still play

    after unloading swf
    the sound of swf still play ??
    how i can stop the swf completely?

    if u mean using
    SoundMixer.stopAll();
    before the loading swf code
    i try that
    and still playing
    thats the code of scene 1
    stop();
    import flash.events.Event;
              SoundMixer.stopAll();
    var scene1s:Loader = new Loader ();
    scene1s.load(new URLRequest("scene1.swf"));
    addChild(scene1s);
    addChild(entery_bt);
    entery_bt.addEventListener(MouseEvent.CLICK, ToMainEntery);
    function ToMainEntery(event:MouseEvent):void
              scene1s.unloadAndStop();
              MovieClip(this.root).gotoAndPlay(1, "Scene 2");
    so he goes to scene 2 with the sound still playing ?

  • Communicate between two differente JavaFX desktop design file

    I have created two JavaFX desktop design file with netbeans 6.9.1. One is the login and the other de principal menu. In java i create a object of the principal menu an just call object.setVisible(true).
    So in javafx how to call the menu principal from the login?. what should i code in the btnLoginAction??
    this is the login javafx:
    function btnLoginAction(): Void {
    function run (): Void {
    var design = Login {};
    Stage {
    title: "Main"
    scene: design.getDesignScene ()
    }

    I'm not looking for a "tutorial created especially for me".... Just perhaps someone that can copy and paste some code from a similar project that they have done so I understand how to do it.
    You could have simply put here's a tutorial for how to use TweenLite to crossfade between four pages, and here's one that will let you pass information between two .swf files. If you recently watched the tutorials then it wouldn't take long to find them (maybe you have them bookmarked) and post a couple links.
    Anyways, I just found an excellent tutorial on how to crossfade using TweenLite (found here) and an article that explains how to pass information from one .swf to another (here). It took some searching and knowing exactly what I was looking for to find them, but that's a much better answer for someone looking to do those two things than I've found here (or elsewhere for that matter).

  • Fading between two pages & controlling one MC from another.

    Let me see if I can explain this properly. I usually use a motion tween and the alpha channel to fade movie clips in or out. What I am currently trying to do is fade one page out and another in, but it could be one of several MCs. I basically have four "pages" for a website including services, portfolio, about, and contact. I have icons on my navigation bar (which is going to be imported into my XHTML seperately so it can float them according to the users window size). The icons need to navigate between the pages and the pages need to fade in and out (eg. fade in the Services MC when the user clicks on the services icon, and fade out of it and into the Portfolio MC when the user clicks on the portfolio icon). Please keep in mind that the icons and pages are in completely different .fla/.swf files because I couldn't figure out how to float them in Flash after several hours of looking around online, but know I can easily do it using div tags + CSS in XHTML.
    If someone could quickly explain how to "gotoandplay" a label in a different .swf file (communicate between the .swf NavBar and my main .swf) as well as fade out of the current MC (whichever page the user is currently on) before fading into new page (according to the icon the user clicks on), I'm sure I could 'fill in the blanks' from the rest of the AS3 and Flash I already know. The page also needs to fade out of whatever page it's currently on when the user clicks on the hide button (located on the page in the main .swf file). There is also several subpages on each page (which shouldn't be a big deal if I can figure the rest of this out).
    I'm going to be using this same concept for nearly all of the websites I design & develop in the future and really need to know how to do this for the current site I'm working on. I would greatly appreciate any suggestions on how to accomplish these two things.
    P.S. Please keep in mind I'm not an advanced user in AS3, but am very computer savy, and have done my share of programming in the past. I looked around for hours online to try and complete this without using the forum, but have come up with links to dead tutorials and short answers left and right. I'm hoping I won't come across the same here.
    From what I've read so far I believe I can use tweening in ActionScript instead of a motion tween on the timeline to fade in and out of clips and believe that's the method to use to accomplish what I'm trying to do. Correct me if I'm wrong though.

    I'm not looking for a "tutorial created especially for me".... Just perhaps someone that can copy and paste some code from a similar project that they have done so I understand how to do it.
    You could have simply put here's a tutorial for how to use TweenLite to crossfade between four pages, and here's one that will let you pass information between two .swf files. If you recently watched the tutorials then it wouldn't take long to find them (maybe you have them bookmarked) and post a couple links.
    Anyways, I just found an excellent tutorial on how to crossfade using TweenLite (found here) and an article that explains how to pass information from one .swf to another (here). It took some searching and knowing exactly what I was looking for to find them, but that's a much better answer for someone looking to do those two things than I've found here (or elsewhere for that matter).

  • Crossfade slider between two sound objects

    I cant find a solution for this anywhere, im so stuck
    arrrghh!
    Im trying to create a crossfade between two sound objects
    using a horizontal slider ( the sound objects have mp3's loaded
    into them via dragging mc's onto a target).
    any help would be great! AS2 please

    Hi,
    exactly what I had seen first. After my adjustment, your page looks like this in my FF and there is no white space:
    There is a difference here:
    my FF:
    <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="1200" height="200" border="0">
    your old FF: 
    <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="1200" height="200">
    and there the new one:
    <object type="application/x-shockwave-flash" data="menu_top.swf" width="1200" border="0" height="1000">
    Hans-G.

  • Transfer large data between two databases via ODI

    Hi, we want to transfer our 2 billion records (70gb) A database oracle server to B database oracle server via ODI LKM SQL to Oracle (SQLLDR).We use a filter like "prod_enter_date>sysdate-1" for daily  records(about 200.000).It takes about 1 our.How can we transfer data faster, thanks  for your advice.

    OK so assuming the Oracle DB's can see each on the network other have a word with your DBA's about creating a DBLink and test out the LKM DB Link KM.
    Also try Uli's amended LKM if dont want to be too intrusive on your souce system creating synonyms etc. : http://sonra.io/tag/lkm-db-links/
    I have used both and they work fine.
    Basically you are currently unloading a large amount of data, transfering to another location and then uploading that data with no transformation to the target environment, a DBLink LKM will transfer this data without the need to unload / upload , just the network transfer.
    Another thread here : https://forums.oracle.com/message/9630782
    To re-quote the that thread quoting the documentaion for that LKM : "As it says in the component description - "This module is recommended when developing interfaces between two Oracle servers."

Maybe you are looking for

  • Which platform for the server

    We are planning to buy Oracle Business Intelligence so that we can use Reports and Discoverer. Now, I want your input for the platform which should use, Windows or UNIX. The pluses for Windows : + font installation and support is easier than UNIX + s

  • Changes in date format while creating/downloading the file

    Hi All, Can any one let me know how does the system determines which date format should it apply while creating/downloading the file. Issue : When I create/download the file generated by report RTXWCF02 using unix level acess the Date format of a fie

  • Is thier  a reason haveing a for loop in paint would cause a problem

    when i have a gui

  • Mouse over, bubble

    Hello, I'm new to the forums I just started learning flash a few days ago and i am LOVING it! I already started work ona a website, but I need some help. In my website I want to have a few pictures where if you move your mouse over them they show you

  • Internationalization Service

    Hello, One of my client's requirement is internationalization of a Web Dynpro application. I am making use of the Web Dynpro Internationalization service and the following is a bit of code that is doing part of it: Locale sessionLocale = WDResourceHa