How can replicate  200Mo with Oilte less than 40 minutes ?

I would like to know if it is possible to do complete refresh of 200Mo of data less than 40 Minutes ?
How to do ?
I did it with wtgpack, webtogo, msync.
I need more than 8 hours for that.
Thank you for more information.

Ther depends merely on the network and the CPU power of the laptop/desktop. There is not much Oracle9i Lite/synchronizaiton can do because the client does a complete refresh. The tuning facilities do only apply when performing a fast refresh.
Assuming that you want a full refresh only for the very first time (instantiation), you might want to look into a new feature in 5.0.2.1.0 called "Offline Instantiation". The replication server creates the 200mb database for each user on the server (rather over the network) which then can be FTP to the client or even burned onto a CD-ROM.
There is a readme.txt file in (Mobile Devevelopment Kit) ORACLE_HOME\Mobile\Sdk\Consolidator\OLI

Similar Messages

  • How can i give delay of less than 1ms or in micro second?

    how can i give delay of less than 1ms or in terms of micro seconds in labview?

    Hi Kamuil,
    have you seen the following thread?
    http://forums.ni.com/ni/board/message?board.id=170​&message.id=81398&requireLogin=False
    hope this helps.
    Cheers,
    --Russ

  • How can I deal with long sql by the oo4o?

    I am using VB and oo4o to develop a sql executor which is a extention of an old system.
    For some reason, I have to use oo4o v8.1.7 to deal with Oracle Database 8i to 11g.
    But when I send a very long sql(11KB) to it I got a error in the VB enviroment.
    The Err.Description is "automention error. Started object is disconnected by the client.".
    The Err.Number is "-2147417848 ".
    The sql that I send it to the program is a simple select sql that like select a, b, c, substrb(d, 1, 2), substrb(e, 2, 3) .... from A_TBL where A=aa;
    This sql is normally executed by the sqlplus but I got an error by the oo4o.
    When I insert a '' between the 30Xth items, it got exectuted normally.
    ex. select a, b, c, substrb(d, 1, 2), substrb(e, 1, 2) ..... substrb(303th, 3, 4), '', substrb(304th, 1, 2) ... from A_TBL where A = aa;
    How can I deal with this problem? Thanks.

    So how can use this function correctly?By learning what exceptions are, how they're used, and what you can do to deal with them. There's a tutorial here: http://java.sun.com/docs/books/tutorial/essential/exceptions/index.htmlAnd here's a quick overview:
    The base class for all exceptions is Throwable. Java provides Exception and Error that extend Throwable. RuntimeException (and many others) extend Exception.
    RuntimeException and its descendants, and Error and its descendants, are called unchecked exceptions. Everything else is a checked exception.
    If your method, or any method it calls, can throw a checked exception, then your method must either catch that exception, or declare that your method throws that exception. This way, when I call your method, I know at compile time what can possibly go wrong and I can decide whether to handle it or just bubble it up to my caller. Catching a given exception also catches all that exception's descendants. Declaring that you throw a given exception means that you might throw that exception or any of its descendants.
    Unchecked exceptions (RuntimeException, Error, and their descendants) are not subject to those restrictions. Any method can throw any unchecked exception at any time without declaring it. This is because unchecked exceptions are either the sign of a coding error (RuntimeException), which is totally preventable and should be fixed rather than handled by the code that encounters it, or a problem in the VM, which in general can not be predicted or handled.

  • How can we say if Join better than using Sub Queries ??

    Hi all,
    I am trying to understand the rationale behind "Is _Inner Join_ better than using _Sub Query_ ?" for this scenario ...
    I have these tables --
    Table1 { *t1_Col_1* (PrimaryKey), t1_Col_2, t1_Col_3, t1_Col_4 }
    -- Number of rows = ~4Million , t1_Col_3 has say 60% entries non-zero -----> (Condition 4)
    Table2 { *t2_Col_1* (PK), t2_Col_2, t2_Col_3 }
    -- Number of rows = ~150Million, t2_Col_2 maps to t1_Col_1 -----> (Condition 1). This means for every distinct value of t1_Col_1 (its PK) we'll have multiple rows in Table2.
    Table3 { *t3_Col_1* (PK), t3_Col_2, t3_Col_3 }
    -- Number of rows = ~50K, t3_Col_1 maps to t1_Col_2 -----> (Condition 2)
    Table4 { *t4_Col_1* (PK), t4_Col_2, t4_Col_3 }
    -- Number of rows = ~1K, t4_Col_2 maps to t3_Col_2 -----> (Condition 3)
    Now here are the 2 queries: -
    Query using direct join --
    SELECT t1_Col_1, t2_Col_1, t3_Col_1, t4_Col_2
    FROM Table1, Table2, Table3, Table4
    WHERE t1_Col_1=t2_Col_2 -- Condition 1
    AND t1_Col_2=t3_Col_1 -- Condition 2
    AND t3_Col_2=t4_Col_1 -- Condition 3
    AND t1_Col_3 != 0
    Query using SubQuery --
    SELECT t1_Col_1, t2_Col_1, t3_Col_1, t4_Col_2
    FROM Table2,
    (SELECT t1_Col_1, t3_Col_1, t4_Col_2
    FROM Table1,Table3, Table4
    WHERE
    AND t1_Col_2=t3_Col_1 -- Condition 2
    AND t3_Col_2=t4_Col_1 -- Condition 3
    AND t1_Col_3!= 0
    WHERE t1_Col_1=t2_Col_2 -- Condition 1
    Now the golden question is - How can I document with evidence that Type-1 is better than Type-2 or the other way ? I think the 3 things in comparison are: -
    - Number of rows accessed (Type-1 better ?)
    - Memory/Bytes used (Again Type-1 better ?)
    - Cost ( ?? )
    (PS - testing on both MySQL, Oracle10g)
    Thanks,
    A

    So, is it right to conclude that Optimizer uses the optimal path and then processes the query resulting in nearly the same query execution time ?If the optimizer transforms two queries so that they end up the same, then they will run in the same time. Of course, sometimes it cannot do so because of the the way the data is defined (nulls are often a factor; constraints can help it) or the way the query is written, and sometimes it misses a possible optimization due to inaccurate statistics or other information not available to it, or limitations of the optimizer itself.
    Is this the right place to ask for MySQL optimization ?Probably not.

  • How can i find out the more than one times occurance of integer in a array?

    How can i find out the more than one occurance of integer in a array. Assume i have 2,2,3,4,2,5,4,5 in a Array and i need to find out the how many times of 2, 5 and 4 is exists in that array. Please some one help me as sson as possible. thanks in advance....

    Kumar_Mohan wrote:
    How can i find out the more than one occurance of integer in a array. Assume i have 2,2,3,4,2,5,4,5 in a Array and i need to find out the how many times of 2, 5 and 4 is exists in that array. Sort the array. Then loop through it and compare each i-th element with the (i+1)-th element.
    Please some one help me as sson as possible. thanks in advance....In future postings, please refrain from telling that it is urgent, or you need help ASAP. It is rather rude to do so.

  • How can i speak with someone from apple live chat??

    How can i speak with someone from apple live chat??I want to ask something

    Yes, that is the key to it.   In North America live chat is available, though I would question the value of it.   It usually takes ten times longer to 'chat' than to talk or even send an eMail.  Why don't you ask your question here; by far the most realistic means of attracting a reasonably accurate answer.

  • My iPhone 4s shuts down with just less than half the battery remaining

    My iPhone 4s shuts down with just less than half the battery remaining. Is my battery shot?

    Hi LucMiranda,
    Thanks for visiting Apple Support Communities.
    It sounds like your iPhone is not behaving correctly. The steps in this article can help with troubleshooting the battery issue you're seeing:
    iPhone and iPod touch: Charging the battery
    http://support.apple.com/kb/HT1476
    iPhone or iPod touch displays the low-battery image and is unresponsive
    If you see the image below, charge the iPhone or iPod touch with USB power adapter for at least 15 minutes.
    You should see this image when iPhone or iPod touch begins to charge:
    If the screen still displays the low-battery icon, try turning the iPhone or iPod touch off and then on again.
    If the issue persists, follow these troubleshooting steps.
    Cheers,
    Jeremy

  • How can i do with labview program,when i have 20 different values,and 1 want to add it with constant value.and how to get the results?

    how can i do with labview program,when i have   20 different values,and 1 want to add it with constant value.and how to get the results?

    Why do the 20 values have to be different? The same code should work even if some are equal.
    What do you mean by "get the result"? The result is available at the output terminal and all you need is a wire to get it where you need it. That could be an indicator, another operation, or even a hardware device.
    What is the data type of the 20 values? An array? A cluster? A bunch of scalars? A waveform? Dynamic data?
    LabVIEW Champion . Do more with less code and in less time .

  • SetString can only process strings of less than 32766 chararacters

    Hi,
    My code is java is described Below. When i'm trying to insert the data in NCLOB fields. size of data is 53935 Characters. It's giving me " setString can only process strings of less than 32766 chararacters" error. Even i'm try it with 10G JBDC driver.
    Please suggest me any solutions.
    StringReader textStream = new StringReader(value);
         CallableStatement cs;
                   try {
                        cs = connection.prepareCall("begin SP_UPDATESIMPLETEXTCONTENT(?,?,?,?); end;");
                        cs.setInt(1,0);
                        cs.setString(2,pageId);
                        cs.setCharacterStream(3, textStream, value.length());
    //                    cs.setClob(3,clobData);
                        cs.setString(4,toDeleted);
                        int i=cs.executeUpdate();
    mail me at ajay.saharan @gmail.com
    Thanks in advanced
    Ajay

    I'am facing the same problem, after doin' some research I found this:
    OC4J 10.1.3.x no longer uses the <data-source> element, and we are not aware of another way of passing through the setBigStringTryClob property. See JRA-12564 for details.
    This means that you cannot store text strings longer than 32K in Oracle for OC4J 10.1.3.x.
    Has anyone has any luck solving this problem?

  • My iPhone 3GS is stocked on apple logo while restarting my iphone.Do I need to reinstall new IOS on it?Or how can I connect with my itunes again.Thanksssss..

    My iPhone 3GS is stocked on apple logo while restarting my iphone. Do I need to reinstall new IOS on it?Or how can I connect with my itunes again.Thanksssss..

    I having the same issue about the and iTunes says "The iPhone cannot be restored at this time because the iPhone software update server could not be contacted or is temporarily unavailable.". I've had the  iPhone 3GS since it came out. It was working fine until I just tried to  update it. It has never been hacked or jailbroken. We and a few others are having  the same issue then it is more than likely that this is an update issue.  I took mine to the Apple store and the tech tried to update it and he  came to the same problem and told me he couldn't update it. My  assumption is that we are not the only one's with this issue and that if  there was a way to update it to the update before this last one it  might be a solution. I don't know how to get the previous update. Apple  probably is aware of the problem, and hasn't come up with a solution  yet. Or, enough people haven't complained yet. The tech suggested that  there might be something wrong with the phone itself, but that couldn't  be since it was working perfectly before I updated it and others are  having the same issue. It is highly unlikely that a lot of people are  not having the same hardware issue all of a sudden at the same time.

  • How can I print with the black and white cartridge only?

    I am trying to print using the black and white cartridge only because magenta is out of ink but I'm getting the following error message in HP Photosmart C7200 series print dialog:
    The printer is out of ink.
    The following ink cartridges are empty: Magenta. Replace these ink cartridges to resume printing.
    How can I print with the black and white cartridge only?
    Mac OSX 10.7.3
    HP Photosmart C7280 (7200 series)
    This question was solved.
    View Solution.

    I am absolutely disgusted by this; clearly a scam from HP to make more money by selling extra ink cartridges!!  I will make sure to never buy any products from the shoddy rip off merchants at HP ever again!!
    You should be ashamed!!

  • I can't download from app store apps. if i try then open account and ask me shange payment type because there is a billing problem with a previous purchase. I download one game 0.99 and nothing more! help me. How can i contact with apple?

    I can't download from app store apps. if i try then open account and ask me shange payment type because there is a billing problem with a previous purchase. I download one game 0.99 and nothing more! help me. How can i contact with apple?

    Click here and ask the iTunes Store staff for assistance.
    (102938)

  • It says that "there was a problem connecting to the server". What's wrong with this, and how can I deal with this problem?

    I just got my new iPad Mini2, and when I choose "sign in with your apple ID", it says that "there was a problem connecting to the server". What's wrong with this, and how can I deal with this problem?

    1. Turn router off for 30 seconds and on again
    2. Settings>General>Reset>Reset Network Settings

  • HT5621 I have moved permanently from the US to live in the UK. when I try to download a UK app I am often told that I cannot use a UK Apple sstore, only a US store. I need to access various UK stores how can I deal with this?

    I have moved permanently from the US to live in the UK. when I try to download a UK app I am often told that I cannot use a UK Apple sstore, only a US store. I need to access various UK stores how can I deal with this?

    Try here
    http://support.apple.com/kb/HT1311
    when you have UK Cards etc best to change as well

  • Adobe always quits unexpectedly in Mac when I read a bit fast. How can i deal with it, plz?

    Adobe always quits unexpectedly in Mac when I read a bit fast.
    It is the latest update.
    How can i deal with it, plz?

    You posted in the forum for iPad and iPhone (different app). I've moved your question to the Reader forum for desktop/laptop computers.

Maybe you are looking for

  • How do I authorise my new MacBook to my iTunes account?

    Hi I have a new MacBook and I'm now trying to download music from my iTunes account onto it. I've got as far as the list of all my downloaded music and when I click "download all", it tells me that this computer is not authorised. I've tried going in

  • HT201290 how to use QuickTime with OS 10.9.5

    I would like to watch downloaded files of a TV series which are on my hard drive.  However, 4 of the downloaded files will not play using QuickTime.  Episodes 5 through 11 are fine.  I borrowed an external drive from a friend who downloaded the same

  • I have a mid 2010 macbook pro. I want to change my hard drive but...

    But I purchased and downloaded Mountain Lion. Plus I have stuff installed and can't find the original install medium. (I have some product keys, but not the medium. If I pull original drive and plug it in to a drive enclosure, can I put new drive in,

  • AFAB posting end of the year on period 13 instead of 12

    Hello, I've this request from accounting department. They would like to post depreciation for area 01  on special period 13 instead of 12 and with the following dates: DOCUMENT DATE:  15.04.xx+1   (following year) POSTING DATE: 31.12.xx This because

  • Negative values in inventory

    Hi All, I'm negative values in inventory,what all i did is, 1) At BI side i loaded data for BX and compressed the request with out selecting the NO MARKER UPDATE 2) After loading BF i compressed the request with selecting the NO MARKER UPDATE 3) Then