How to sync data of the operating 100000 record in the 9i DB??

I use java to develop the program in JDBC. In the 9i DB has 100,000 more record
data in the TABLE_A. The TABLE_A had been operatten with the DLL of select and
update/insert in the two threads, that is Thread_select and Thread_update, on
same time.
Thread_A is select data from TABLE_A and the same time, Thread_B is simultaneity
update the TABLE_A. how can is sync data for TABLE_A , and get the avaiable and
perfermance proccess TABLE_A in the two Thread with no JDBC get data error.
Lock Table or RollBack proccess?? Please guide for my problem. thanks .

try this:
FUNCTION DB02_ORA_FILL_TS.
""Local interface:
*"  IMPORTING
*"     VALUE(FLAG_REFRESH) LIKE  DBFLAGS-DATA_ONLY DEFAULT SPACE
*"  EXPORTING
*"     VALUE(CURR_TIME) LIKE  TST04-CURR_TIME
*"     VALUE(CURR_DATE) LIKE  TST04-CURR_DATE
*"     VALUE(DATETIME) LIKE  DATE_TIME STRUCTURE  DATE_TIME
*"  TABLES
*"      TS STRUCTURE  TABLE_SPC OPTIONAL
It's the FM that is used in DB02 (Oracle).
ex.
data: TS TYPE TABLE OF  TABLE_SPC .
CALL FUNCTION 'DB02_ORA_FILL_TS'
TABLES
  TS                 = TS    .

Similar Messages

  • My Laptop with Synced Firefox crashed and i had to do a fresh install, how can i retrieve all the synced data from the Mozilla Servers

    I had set up Firefox sync on my Windows 7 Laptop which crashed and I had to reinstall windows. I used to be able to share content with my Firefox synced Android too. Is there a way i can retrieve the synced data from the Mozilla servers? I tried to set up sync on my new installation on a Mac 10.6 but when i click on Set-up Sync it asks me:
    # Set-up new sync account (i already have one)
    # I already have a sync account
    When i select the second option it tells me to Add a device. I went in the "Sync Options" and tried the replace all data on this computer with my sync data, but nothing happened. When i try to connect from my Android it also asks me to add a device with the 3 boxes with letters in them.
    So in both the cases it is asking me to "Add a device" but i cannot connect to my sync account in either case to sync data from there

    Please search the forums. This has been covered here extensively.

  • How to insert data into the mysql table by giving as a text file

    Hi,
    Any one know's how to insert data into the mysql table by giving as a text file as the input in JSP.Please respond ASAP.
    Thanks:)

    At least you can try StringTokenizer to parse your text files. Or download a text JDBC driver to parse your files, for instance, HXTT Text(www.hxtt.net) or StelsCSV(www.csv-jdbc.com).

  • HT1386 I have an 80GB iPod that was purchased in 2007 and I cannot figure out how to sync it using the "newer" iTunes format.  Can anyone help?

    I have an older iPod (80GB) which I used to be able to sync, but now the iTunes format has changed and I cannot figure out how to sync it.  The tutorial showed a page that should pop up when the device is connected to my authorized PC, but that page does not appear.  Any suggestions?  I need to sync my device to transfer newer music.

    If you have a PC, Control S brings back that familiar side bar on the left side. That might help.  I'm also going to askt he hosts to relocated this post in the iPod forum. This is the iPad part and you may get more device specific info there.

  • How to process data in the past based from data in the present

    hello guys,
    i have a problem in my labview programs. how to process data in the past based from data in the present ?
    i have a formula self-organizing maps
    this formula is looking for D1, D1 is neuron index that will be searched for the smallest value.and the result are D1=2 ,D2=5, D3=17 from calculating with formula  .it means the smallest value is 2, "2" from weight [2 2] in file attached.
    and then it will be in other formula
    it mean [2 2] + 0.5 ( [1 1]-[2 2] ) = [1.5 1.5]
    and the weight will be  [1.5 2 2 ] in matrix
                                              1.5 3 5
    I would appreciate any input/help on solving this
    thanks
    Attachments:
    dika.vi ‏16 KB
    weight.txt ‏1 KB
    data .txt ‏1 KB

    Hi Ronny Hanks,
    Moving your records from internal table into the database table depends upon various scenarios :-
    1. If you use INSERT statement.
    INSERT <database_table> FROM TABLE <internal_table>.
    But in this case, you need to make sure that you don't have any duplicate entries in your internal table that violates data entry into database table, else you will get a dump.
    INSERT <database_table> FROM TABLE <internal_table> ACCEPTING DUPLICATE KEYS.
    In this case, you are forcefully inserting duplicate records into your database table which may lead to data redundancy in your database table.
    2. If you use UPDATE statement.
    UPDATE <database_table> FROM TABLE <internal_table>.
    This will update the existing records in your database table from the internal table.
    3. If you use MODIFY statement.
    MODIFY <database_table> FROM TABLE <internal_table>.
    This statement works both in combination of INSERT & UPDATE statements.
    Existing records (in database table) will be eventually updated/modified and new records (not in database table currently) will be successfully inserted into the database table.
    Hope this solves your problem.
    Thanks & Regards.
    Tarun Gambhir.

  • How to download data from the icloud?

    How to download data from the icloud?

    Settings>General>Reset>reset all content and settings. When iPhone restarts you will guide to restore from iCloud backup

  • How to get data on the next page in case of templates if data is more ?

    please tell me how to get data on the next page while i m using template in my first page , if data is more howw it can be displayed on the next page ?

    HI Asim,
    template is fixed we  it can't be expand . u can better to use table line it can automaticlly expending if data is more ... u can create one more page like page 2 and create a window for entire second page ..then assign it in first page (next page page2).
    regards
    kiran kumar.

  • How to insert data to the specified row column of the multi column list box

    Hi All
    How do i insert data into the specified column of the multi cplumn list box?
    I have a table that containsall station nos and name.Then another table contains the data the various stations having at  for 24 hrs.That is 12 am to 11 pm.
    And i want to display each stations details as follows using a multi column list box/table
    My stationinfo table
    stnno   stnname......................
    s1           stn1
    s2            stn2
    s3             stn3
    The other table
    stnno      sysdatetime       data
    s1             12am                   1
    s2              12am                   4
    s1               1  am                 2
    So the station s1,s2.... will have data for 24 hrs.
    And i want to display it as follows using a multicolumn listbox
    stnname        12am   1 am ......................................11pm
    s1                   ...................
    s2                 ........................
    What i have in my  mind is to get all station nos
    and in a for loop get the station's data from 12 am to 11 pm
    or
    select every statios data for each hor.But in this case i have to query the database 24 times.So i dont think its a good way.
    Or any other better query available?
    Can anybody suggest me a good idea?
    One more thing...how to insert data into the specified field row or column of a multi column list box?
    Thanks in advance

    hi
    i want to know,,can u say ur need clearly...and i attached two image u see that one
    Indrajit
    | [email protected] | [email protected] .
    Attachments:
    station.JPG ‏35 KB
    station2.JPG ‏79 KB

  • How to get  data with the raw pattern from resultset ?

    would you tell me how to get data with the raw pattern from resultset ?
    thank you in advance!
    longgger2000

    I tried getBytes() and getObject()
    , but I can not get the right result , for example the
    data in oracle database is 01000000DFFF, when In used
    the method of getBytes() and getObject(), I get the
    result of [B@1c2e8a4, very different , please tell me
    why !
    thank you
    longgger2000
    [B is byte arrayseem that it return an bytes array for you.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to acquire data from the memory of multimeter

    I am a beginner of Labview. I don't know how to acquire data from the memory of multimeter.
    I read some examples about DAQ, but it seems not similar to my case. I can't use DAQ in my computer, as I don't have DAQ board.
    Could anybody give me some guide? Similar examples would be great.
    Solved!
    Go to Solution.

    Confirm that you have the VISA Run Time Engine on the target machine. If you do not have it installed, you can install the VISA Run Time Engine from ni.com.
    Error -1073807346 Using VISA When Running LabVIEW Executable On Target Computer
    Message Edited by Mathan on 10-12-2009 07:11 AM

  • How much Image Data can the Scenegraph hold?  handling big pictures?

    I have some jpg pictures that are taken with a standard compact camera.
    Pictures are around 2MB in size. I would like to load them full size so I can Zoom into them later.
    I can load about 4 of this pictures (total 8MB data), but not 5 of them.
    Where is the limitation?
    How much Image Data can the Scenegraph hold?
    any tweeks or workaround for big pictures?

    You mean this:
    The default maximum heap size is half of the physical memory up to a physical memory size of 192 megabytes and otherwise one fourth of the physical memory up to a physical memory size of 1 gigabyte.
    For example, if your machine has 128 megabytes of physical memory, then the maximum heap size is 64 megabytes, and greater than or equal to 1 gigabyte of physical memory results in a maximum heap size of 256 megabytes.So Java doesn't want to use a lot of ram by default. My 3 Year PC has allready 4 GB Ram. But well there are laptops with 1 or 2 gb RAM. Even my 5 year old video-pc, only there to watch some movies, has 1.2GB RAM. So Whatever, maybe Oracle will change this in Java7 or 8. As well also Anyway, i can do make the a little bit more effiecient, but if someone want to load a jpg captuared with a 12MegaPixel Camera, you just need some Ram.

  • How to sync and let the address book data overtake everything on my phone?

    Hi everyone!
    I have a Sony Ericsson k750i.
    I have no problems whatsoever syncing when I first got my phone etc.
    In all my address book entries, I have updated all of my numbers to have the international dialling code before each of the numbers. I now want to sync with my phone again to ensure that all the numbers in my phone now have the new numbers that are entered on address book.
    How can I use iSync to ensure my phone only takes what is in my address book and my address book basically ignores the data from my phone?
    I hope this makes sense!!
    Thanks in advance!
    iMac G5   Mac OS X (10.4.6)  

    If you want to overwrite the data representing contacts and calendars on you mobile handset with data from the Address Book and iCal, you should reinitialize the truth database by either…
    • removing, then adding back [and reconfiguring] your device, or
    • opening the iSync Preferences… dialog, and selecting the Reset Sync History… option.
    Neither step will affect your data store, but it will compel the Sync Services framework to behave as if it were a first-time synchronization, and give you the opportunity to Replace or Merge the data with your handset. You should choose Replace.

  • How to sync data/apps between different iTouches?

    I have my itouch, and some apps for my kid.
    If I buy a new itouch, I'd like to move all my existing data to the new ipod touch, then put only a few apps on the old ipod touch.
    how would i go about managing multiple ipod touch devices using itunes?
    Can I mix and match apps between the various ipods?

    You can sync as many ipods as you like to one computer/library.
    Each device is different and can be set to sync whatever you like.

  • How to sync data after iphone 5s is activated

    Received my new Iphone 5s today. Currently had Iphone 4s. Went through the set up but when it got to the syncing of my data from my old phone through Icloud it wouldn't allow me to because the 5s phone ios version was 7.0.6 and my 4s has the new version 7.1 I did download the new version onto the 5s but now not sure how to sync all my info. I did have a current backup of Icloud on the 4s. Any suggestions appreciated

    If you've iPhone 4s iCloud backup and you also have updated your iPhone 5s to IOS 7.1.
    1. Connect your iPhone 5s to the wall power supply with the supplied adapter.
    2. Make sure your iPhone 5s is connected to your Wi-fi router.
    3. Use iPhone 5s Settings > General > Reset > Erase All Content & Settings to wipe your iPhone and set it up again as new, at the end of the procedure choose restore from iCloud backup.
    iCloud Restore:
    http://support.apple.com/kb/TS4036

  • How to populate data in the data table on combo box change event

    hi
    i am deepak .
    i am very new to JSF.
    my problem is i want to populate data in the datatable on the combo box change event.
    for example ---
    combo box has name of the city. when i will select a city
    the details of the city should populate in the datatable. and if i will select another city then the datatable should change accordingly..
    its urgent
    reply as soon as possible
    thanks in advance

    i am using Rational Application Developer to develop my application.
    i am using a combo box and i am assigning cityName from the SDO.
    and i am declaring a variable in the pageCode eg.
    private String cityName;
    public void setCityName(String cityName){
    this.cityName = cityName;
    public String getCityName(){
    return cityName;
    <h:selectOneMenu id="menu1" styleClass="selectOneMenu" value="#{pc_Test1.loginID}" valueChangeListener="#{pc_Test1.handleMenu1ValueChange}">
                        <f:selectItems
                             value="#{selectitems.pc_Test1.usercombo.LOGINID.LOGINID.toArray}" />
                   </h:selectOneMenu>
                   <hx:behavior event="onchange" target="menu1" behaviorAction="get"
                        targetAction="box1"></hx:behavior>
    and also i am declaring a requestParam type variable named city;
    and at the onChangeEvent i am writing the code
    public void handleMenu1ValueChange(ValueChangeEvent valueChangedEvent) {
    FacesContext context = FacesContext.getCurrentInstance();
    Map requestScope = ext.getApplication().createValueBinding("#{requestScope}").getValue(context);
    requestScope.put("login",(String)valueChangedEvent.getNewValue());
    and also i am creating another SDO which is used to populate data in datatable and in this SDO in the where clause i am using that requestParam .
    it is assigning value in the pageCode variable and in the requestParam but it is not populating the dataTable. i don't no why??
    it is possible that i may not clear at this point.
    please send me the way how my problem can be solved.
    thanks in advance

Maybe you are looking for

  • Inferior quality when viewing a built DVD in on a computer

    I've seen a few postings with similar problems but have yet to find any good solutions. I'm creating a DVD and many of my client's clients will be viewing it on computers instead of NTSC monitors. No matter how high I set the encoding bitrate in DVDS

  • Solution for BBDM Mac sync

    I had several problems using BBDM for MAC as have so many others and followed the advice of one the posts on this board. I now cannot find that post so can't give credit to the poster but the solution worked for me and follows: Delete all prior sync

  • Rolling back version 10

    How do I  roll back to an earlier version?   11.1 is just too buggy -- I don't like the way it displays podcasts, and I can't add files (.mp3's) or folders.

  • Searching the Org. structure

    Hi all, SRM 5.0, R/3 ECC 6.0 I'm working on the n step BADI for the approval workflow for SC. The requirement is that I need to search the org structure to get the superiors of the creator of the shopping cart. The approach should be a bottom up appr

  • Adobe Flash 11 General Use

    Hello, I have a question regarding the Adobe Flash Player 11 license. In section 3.1 General use, in the product license, it states the following: "You may install and Use one copy of the Software on your Compatible Computer." How does this, if at al