Jdeveloper performing one time indexing

I have successfully installed Jdeveloper 9.0.4 on Windows 2000 OS; after i have opened the IDE and i have created my first project in a new Workspace the system become very slowly because Jdeveloper is "Performing one time indexing of file....".
What does it mean?
How can I stop this process?
How can I start this process manually (for example when i stop working....)?
Thanks!
Leonardo

I find it really impossible to believe the amount of RAM which JDeveloper consumes. Even after feeding it with 512 MB RAM for which i had to go for a motherboard change (my older board only supported 256 max) and changing the processor to 1.8 Ghz Pentium my system is slow when Jdeveloper is running.
Now if i have to run the oracle database server and an application server like websphere, i guess even a supercomputer would give up.
Just as a side-remark Visual studio.NET architect along with SQL server and IIS runs good in 128 MB ram and in 256 MB it flies
My apologies for hurt sentiments, if any

Similar Messages

  • What is the best way of creating a one-time backup using DPM 2012R2?

    Hello,
    Due to some severe tape issues, we have lost a lot of our long-term storage data.
    I schedule a recovery point on our servers every Friday, once a week.  We retain this data for the 64 weeks (the maximum amount of versions DPM allows.)
    Management needs me to put one recovery point from each month to tape (preferably from the beginning of each month.)
    From the DPM console, I have been manually searching each server and running a recovery job from each "short term" recovery point we still have in the system.   I am recovering this data to a large disk array that I'm using as a staging
    area.  My intention is to take this data and put it onto tape using DPM and leave it there forever (20 years.)
    Since the space on the array is limited, I can only recover a few months at a time before having to delete the recoevered data to make way for the next group.
    The way DPM works it seems you must have a protection group for every backup job you run;  so if I have to repeat this process 8 times, I'll end up with 8 different protection groups all assigned to the host running the staging array.  NOTE: 
    the host running the staging array will be wiped in the near future.
    What would be the best method to carry this task out ?
    This forum post is similar, but doesn't address all these additional groups created:
    https://social.technet.microsoft.com/Forums/en-US/f379740c-4507-4a82-b275-c95e3e968b57/dpm-2012-r2-perform-one-time-backup?forum=dataprotectionmanager
    Any assistance would be welcome!
    Matthew J. Fazio

    Hi,
    What you can do is protect the staging server by using a single share - lets call it STAGING for simplicity.
    Perform your first set a restores and restore to the staging share, you can create meaningful subdirectories one for each data source you are restoring.  
    Now protect the STAGING share using DPM - protect using long term to tape only, Frequency yearly, and set retention policy for 20 years. 
    Perform an ad-hoc backup (right-click the data source and create recovery point to tape)
    When that completes, delete the sub-directories under the staging share and then repeat the process of restoring more data then backing up the same share.  When you are all done, you can remove the protection group, but maintain the tape backups
    so they will be available for restores. 
    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. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • ITunes can only perform one thing at a time

    Ever since updating to the latest version of iTunes on my dual core mac mini, iTunes can only perform one task at a time beach balling the entire time.  For example if it is downloading a podcast, and I try and watch something off my apple tv via home sharing on this library, it fails to load.  Same thing if it is syncing my iPhone.
    Importing new media into my library also seems to take much longer than it did before, for instance importing a 700mb movie takes ~20 hours.
    What can cause such a degrade in performance?

    Back up your drive now.  Slow copying may be one sign a drive is about to fail, because it is having to repeat a lot of actions many times.
    What does Disk Utility say about the SMART status in get info?  Have you verified the hard drive with DU's first aid?

  • Is there a way to perform a one time deprecation

    I have an asset that should have been depreciating for a year. is there a way to perform a one time deprecation to get the asset value correct, then start the deprecation on the correct amount?

    Hi Tracy
    You can post unplanned depreciation from ABAA.
    After ABAA, run AFAB to post the same in FI-GL
    After that, you will start on a right foot
    Br, Ajay M

  • HT201274 when contents are erased, is this a one-time action or is it possible to perform erase contents multiple times?

    is "erase contents" a one-time action or can it be performed multiple times?

    If the "new user"/thief restores the device as new, which he or she will have to do in order to get the iPad up and running, it will not be your iPad anymore anyway, because they will set it up with their own ID and you wouldn't be able to track it a second time.
    Find My iPad/iPhone would be tied to your Apple ID. They will no longer be using your ID on their "new" iPad.

  • JDEVELOPER TP Reponse Time - extremely slow

    I am new to Jdeveloper and my first install is TP 4 (4.11.1.1.0.0) and it is basically unusable. When I click on New Application it takes at least 3 minutes to bring up the New Application window. If I highlight the name it takes another 3 minutes to allow me to enter one character. I have a high powered windows XP box with 4 Gig of memory and the app is only using 180Meg.
    All I did to install it was unzip the download and execute the jdeveloper.exe.
    Thanks

    Shay Shmeltzer blogged about making JDev faster sometime ago which you may find useful.
    In addition I also blogged that McAfee's disk-hog, ah, I mean Virus-Scanner also kills JDeveloper performance thanks to McAfee's lousy JAR file scanning. I can confirm this is still an issue for McAfee with the latest release as we've hit it at our current client's site.
    Both these articles are indexed at the Oracle Wiki.
    Hope this helps.
    CM.

  • Index issue with or and between when we set one partition index to unusable

    Need to understand why optimizer unable to use index in case of "OR" whenn we set one partition index to unusable, the same query with between uses index.
    “OR” condition fetch less data comparing to “BETWEEN” still oracle optimizer unable to use indexes in case of “OR”
    1. Created local index on partitioned table
    2. ndex partition t_dec_2009 set to unusable
    -- Partitioned local Index behavior with “OR” and with “BETWEEN”
    SQL> CREATE TABLE t (
      2    id NUMBER NOT NULL,
      3    d DATE NOT NULL,
      4    n NUMBER NOT NULL,
      5    pad VARCHAR2(4000) NOT NULL
      6  )
      7  PARTITION BY RANGE (d) (
      8    PARTITION t_jan_2009 VALUES LESS THAN (to_date('2009-02-01','yyyy-mm-dd')),
      9    PARTITION t_feb_2009 VALUES LESS THAN (to_date('2009-03-01','yyyy-mm-dd')),
    10    PARTITION t_mar_2009 VALUES LESS THAN (to_date('2009-04-01','yyyy-mm-dd')),
    11    PARTITION t_apr_2009 VALUES LESS THAN (to_date('2009-05-01','yyyy-mm-dd')),
    12    PARTITION t_may_2009 VALUES LESS THAN (to_date('2009-06-01','yyyy-mm-dd')),
    13    PARTITION t_jun_2009 VALUES LESS THAN (to_date('2009-07-01','yyyy-mm-dd')),
    14    PARTITION t_jul_2009 VALUES LESS THAN (to_date('2009-08-01','yyyy-mm-dd')),
    15    PARTITION t_aug_2009 VALUES LESS THAN (to_date('2009-09-01','yyyy-mm-dd')),
    16    PARTITION t_sep_2009 VALUES LESS THAN (to_date('2009-10-01','yyyy-mm-dd')),
    17    PARTITION t_oct_2009 VALUES LESS THAN (to_date('2009-11-01','yyyy-mm-dd')),
    18    PARTITION t_nov_2009 VALUES LESS THAN (to_date('2009-12-01','yyyy-mm-dd')),
    19    PARTITION t_dec_2009 VALUES LESS THAN (to_date('2010-01-01','yyyy-mm-dd'))
    20  );
    SQL> INSERT INTO t
      2  SELECT rownum, to_date('2009-01-01','yyyy-mm-dd')+rownum/274, mod(rownum,11), rpad('*',100,'*')
      3  FROM dual
      4  CONNECT BY level <= 100000;
    SQL> CREATE INDEX i ON t (d) LOCAL;
    SQL> execute dbms_stats.gather_table_stats(user,'T')
    -- Mark partition t_dec_2009 to unusable:
    SQL> ALTER INDEX i MODIFY PARTITION t_dec_2009 UNUSABLE;
    --- Let’s check whether the usable index partition can be used to apply a restriction: BETWEEN
    SQL> SELECT count(d)
        FROM t
        WHERE d BETWEEN to_date('2009-01-01 23:00:00','yyyy-mm-dd hh24:mi:ss')
                    AND to_date('2009-02-02 01:00:00','yyyy-mm-dd hh24:mi:ss');
    SQL> SELECT * FROM table(dbms_xplan.display_cursor(format=>'basic +partition'));
    | Id  | Operation               | Name | Pstart| Pstop |
    |   0 | SELECT STATEMENT        |      |       |       |
    |   1 |  SORT AGGREGATE         |      |       |       |
    |   2 |   PARTITION RANGE SINGLE|      |    12 |    12 |
    |   3 |    INDEX RANGE SCAN     | I    |    12 |    12 |
    --- Let’s check whether the usable index partition can be used to apply a restriction: OR
    SQL> SELECT count(d)
        FROM t
        WHERE
        (d >= to_date('2009-01-01 23:00:00','yyyy-mm-dd hh24:mi:ss') and d <= to_date('2009-01-01 23:59:59','yyyy-mm-dd hh24:mi:ss'))
        or
        (d >= to_date('2009-02-02 01:00:00','yyyy-mm-dd hh24:mi:ss') and d <= to_date('2009-02-02 02:00:00','yyyy-mm-dd hh24:mi:ss'))
    SQL> SELECT * FROM table(dbms_xplan.display_cursor(format=>'basic +partition'));
    | Id  | Operation           | Name | Pstart| Pstop |
    |   0 | SELECT STATEMENT    |      |       |       |
    |   1 |  SORT AGGREGATE     |      |       |       |
    |   2 |   PARTITION RANGE OR|      |KEY(OR)|KEY(OR)|
    |   3 |    TABLE ACCESS FULL| T    |KEY(OR)|KEY(OR)|
    ----------------------------------------------------“OR” condition fetch less data comparing to “BETWEEN” still oracle optimizer unable to use indexes in case of “OR”
    Regards,
    Sachin B.

    Hi,
    What is your database version????
    I ran the same test and optimizer was able to pick the index for both the queries.
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for 32-bit Windows: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    SQL>
    SQL> set autotrace traceonly exp
    SQL>
    SQL>
    SQL>  SELECT count(d)
      2  FROM t
      3  WHERE d BETWEEN to_date('2009-01-01 23:00:00','yyyy-mm-dd hh24:mi:ss')
      4              AND to_date('2009-02-02 01:00:00','yyyy-mm-dd hh24:mi:ss');
    Execution Plan
    Plan hash value: 2381380216
    | Id  | Operation                 | Name | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |
    |   0 | SELECT STATEMENT          |      |     1 |     8 |    25   (0)| 00:00:01 |       |       |
    |   1 |  SORT AGGREGATE           |      |     1 |     8 |            |          |       |       |
    |   2 |   PARTITION RANGE ITERATOR|      |  8520 | 68160 |    25   (0)| 00:00:01 |     1 |     2 |
    |*  3 |    INDEX RANGE SCAN       | I    |  8520 | 68160 |    25   (0)| 00:00:01 |     1 |     2 |
    Predicate Information (identified by operation id):
       3 - access("D">=TO_DATE(' 2009-01-01 23:00:00', 'syyyy-mm-dd hh24:mi:ss') AND
                  "D"<=TO_DATE(' 2009-02-02 01:00:00', 'syyyy-mm-dd hh24:mi:ss'))
    SQL>  SELECT count(d)
      2  FROM t
      3  WHERE
      4  (
      5  (d >= to_date('2009-01-01 23:00:00','yyyy-mm-dd hh24:mi:ss') and d <= to_date('2009-01-01 23:59:59','yyyy-mm-dd hh24:mi:ss'
      6  or
      7  (d >= to_date('2009-02-02 01:00:00','yyyy-mm-dd hh24:mi:ss') and d <= to_date('2009-02-02 02:00:00','yyyy-mm-dd hh24:mi:ss'
      8  );
    Execution Plan
    Plan hash value: 3795917108
    | Id  | Operation                | Name | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |
    |   0 | SELECT STATEMENT         |      |     1 |     8 |     4   (0)| 00:00:01 |       |       |
    |   1 |  SORT AGGREGATE          |      |     1 |     8 |            |          |       |       |
    |   2 |   CONCATENATION          |      |       |       |            |          |       |       |
    |   3 |    PARTITION RANGE SINGLE|      |    13 |   104 |     2   (0)| 00:00:01 |     2 |     2 |
    |*  4 |     INDEX RANGE SCAN     | I    |    13 |   104 |     2   (0)| 00:00:01 |     2 |     2 |
    |   5 |    PARTITION RANGE SINGLE|      |    13 |   104 |     2   (0)| 00:00:01 |     1 |     1 |
    |*  6 |     INDEX RANGE SCAN     | I    |    13 |   104 |     2   (0)| 00:00:01 |     1 |     1 |
    Predicate Information (identified by operation id):
       4 - access("D">=TO_DATE(' 2009-02-02 01:00:00', 'syyyy-mm-dd hh24:mi:ss') AND
                  "D"<=TO_DATE(' 2009-02-02 02:00:00', 'syyyy-mm-dd hh24:mi:ss'))
       6 - access("D">=TO_DATE(' 2009-01-01 23:00:00', 'syyyy-mm-dd hh24:mi:ss') AND
                  "D"<=TO_DATE(' 2009-01-01 23:59:59', 'syyyy-mm-dd hh24:mi:ss'))
           filter(LNNVL("D"<=TO_DATE(' 2009-02-02 02:00:00', 'syyyy-mm-dd hh24:mi:ss')) OR
                  LNNVL("D">=TO_DATE(' 2009-02-02 01:00:00', 'syyyy-mm-dd hh24:mi:ss')))
    SQL> set autotrace off
    SQL>Asif Momen
    http://momendba.blogspot.com

  • How do I delete    all contacts (at one time) from i      phone4

    Somehow I have gotten mutilple listing in contacts.  How do I delete all contacts from I phone and start over?

        baprawski,
    Is there a particular reason why you want to delete the contacts all at once? The only way you can delete all the contacts all one time would be to wipe the device. This will complete erase all data on the phone including the contacts.
    You want to make sure you backup your device uisng the desktop manager. Once you perform the wipe you can then backup your contacts using the desktop manager and just make sure to uncheck the Contacts when backing up so they are not added back to your phone.
    John B
    Follow us on Twitter @VZWSupport

  • How can I clean up queue one-time on Sun Java system messaging 6.3

    Hi,
    <address>Our Email server have a problem, When I run _./imsimta qm directory tcp_local_, There are about 5 Millions of messages in the queue.</address>
    Now our Email server send messages very slowly, how can I clean up queue one-time?
    the command _./imsimta qclean_ is very slowly.
    What can I do to prevent this problem?
    our Email server version is :
    Sun Java(tm) System Messaging Server 6.3-6.03 (built Mar 14 2008; 32bit)
    libimta.so 6.3-6.03 (built 17:12:37, Mar 14 2008; 32bit)
    SunOS email-1 5.10 Generic_120011-14 sun4u sparc SUNW,Sun-Fire-V890
    Thank you !

    If you have more than 100,000 messages in the queue, then look at the MAX_MESSAGES parameter in [the job_controller.cnf file|http://wikis.sun.com/display/CommSuite/Job+Controller+Configuration+File]. If the parameter is not specified, it defaults to 100000. If you have more than that number of messages in the channel queues, it will take a long time for new/legitimate messages to be sent because job_controller is only considering the first 100,000 messages in the queue.
    If you get into the "imsimta qm" command do do "sum -database", it will show a summary of what job_controller has in its internal cache and therefore what job_controller is working on. If you compare that to "sum -directory" you will probably see a difference.
    If these are all legitimate messages, you need to increase MAX_MESSAGES, cnbuild, and restart job_controller.
    If they are not, then preventing this in the future will require determining how they got into your queue and correcting that.
    As for removing them, the "imsimta qm" commands allow you to select messages by various criteria and then you can "return" or "delete" them. But yes, that will take a long time if there are many messages because it is a single threaded process and it needs to open and examine each message. You may be able to accomplish the task more quickly with a shell script that works on individual channel queue subdirectories and then run multiple copies of that script in parallel. After you have cleaned out the queue, restart job_controller.
    Also, you might want to consider [the subdirs channel keyword|http://msg.wikidoc.info/index.php/Subdirs_and_nosubdirs_Channel_Options].

  • How to get multiple rows at one time in a table?

    hi
    I have a JTable bound with ViewObject and i use multiple selection mode setting to get selection row.
    My question is when i select more then one row at one time i only can get those index from JTable but can't get those rows from ViewObject.is it possible to get rows from ViewObject? or how to use JTable row index to get row from ViewObject?

    repost

  • Can I change more than one photo from color to black and white at one time?

    can I change more than one photo from color to black and white at one time?

    Check out iPhoto Batch Enhancer
    http://www.feroxsoft.com/ibe/index.php.en
    Regards
    TD

  • I created a form with Single Choice fields, 4 days with times listed. But, I want the user to only be able to choose one time, and the time chosen to be unavailable for other users. How do I do this?

    I created a form with Single Choice fields, 4 days with times listed. But, I want the user to only be able to choose one time, and the time chosen to be unavailable for other users. How do I do this? I have 4 blocks of Single Choice fields in order for the summary page to give me each day in the final report. But, I need the user to be able to make a selection of any day and time and that apointment to no longer be available to future users when they log in. Plus, when the user clicks on the time, they are unable to change their mind and choose another time. Here's the link if you want to see what I'm talking about: 2015-2016 Workload Apportionment Review

    I'm afraid not.    It's not rocket science but you need to do some coding. 
    You'll need to find a script (php) and save it to your local site folder.  Then reference the script in your form's action attribute like so.
         <form action="path/form-to-email-script.php" >
    The input fields in your HTML form need to exactly match the script variables. 
    I'm  assuming you're hosted on a Linux server which uses PHP code.  Linux servers are also case sensitive, so upper case names are not the same as lower case names.  It's usually best to use all lower case names in your form and script to avoid confusion.
    Related Links:
    Formm@ailer PHP from DB Masters
    http://dbmasters.net/index.php?id=4
    Tectite
    http://www.tectite.com/formmailpage.php
    If this is all a bit beyond your skill set, look at:
    Wufoo.com (on-line form service)
    http://wufoo.com/
    Nancy O.

  • Duplicate one-time vendor check

    Hello Guys
    It's necessary to activate a check whether one-time vendor already exists in the system as usual vendor.
    I think such check can be performed either during PO creation while entering vendor address, or during invoice posting while entering bank details, tax code etc.
    So please advise if you have any ideas.
    P.S. VAT Reg No is not used in our country, instead we use Tax Number 1.
    Great thanks.

    Hello,
    For normal vendor you can maintain duplicate check in OBA5
    Application Area F2
    Message No.144 for Vendor and 145 for customer, making it as information.
    I really doubt there is such control for One time Vendor in the system.
    Regards,
    Ravi

  • One Time Service

    Dear Friends,
    Just like there is a one time customer and vendor account group for vendor and customer who we deal with only once a while.
    Is there something like one time service in MM.?
    We have few services defined in AC01 and attached a valuation class to each service. What if we need to pay for some service (one time), there shouldn't be a need to create a service master.
    When we create the PO for such one time service not defineed in AC01, it saves the PO, but does not allow us to perform the Service entry sheet.
    Error it throws is: Account determination for entry CAAI KBS 0001 not possible. (CAAI - is our Chart of Accts), what is it that is related with key KBS in GBB of OBYC?
    Thanks
    Sanjay

    no answer, close file
    Thanks

  • One-time account - customer

    Hello All,
    Need some clarity on how one-time customer is useful.
    i have an one-time account customer, i want to know if this one-time customer is repeatedly ordering orders as normal sold to party, in this situation can i how do i handle this customer, can i continue with same a/c group or any best practices you suggest.
    Mahesh

    Hi ,
    One- time customer is the customer who performs all the Partner functions like sold to ship to , Bill to and Payer
    And  One time customer also comes to business occasionally for business.
    These are the two main  differences for the one time customer
    Hope this clears you.
    regards,
    santosh

Maybe you are looking for

  • XP Mode on Windows 7 Pro

    I am running 64 bit Windows 7 Pro on a brand new Lenovo E545 ThinkPad.  It replaced an older Lenovo that ran XP Pro.  All attempts to get the Virtual PC XP mode functional have failed.  The Hardware - Assisted Virtualization Detection Tool says it sh

  • Can you put back the letter index to make selection of the files easy?

    I have well over 1000 pdf papers and it is tedious to scroll the list to find the right file to open.  The old versions had a column on the right with letters which act as an index, but with the recent upgrade or downgrade, that has somehow disappear

  • Client 11gR2 install on Win 7 Pro fails java.lang.NullPointerException

    I'm attempting to install the Oracle 11gR2 Client on a windows 7 professional (32 bit) system and the install is failing. I've downloaded the latest client files from this web link: http://www.oracle.com/technology/software/products/database/oracle11

  • Federated Portal not working

    Hi Guyz, We set up FPN but its not showing roles of producer portal in the Consumer portal, what might be the issue. Any guidance. The connection test is going through fine.

  • AME rendering outdated AE content

    It appears that AME CC (7.1.0.174) will render  dynamic-link content in whatever state it was in when it was opened. Example: I have a Premiere project that has a text card that is dynamically linked from AE. If I open AME, then hide the text in the