Oracle Automatically creates some indexes.

Hi,
In my database on several table on some non indexed columns , oracle automatically creates indexes which start with naming convention 'XIF'.
what are this indexes? and what is benefit with it? is there any way to stop this?
Thanks

HI,
thanks for reply,
its actually non oracle user,
see the below output
select index_name,table_name,owner from dba_indexes where index_name like 'XIF%';
INDEX_NAME TABLE_NAME OWNER
XIF582TBLMGROUP TBLMGROUP JISPBILCORBILLINGSQA510
XIF439TBLMACCOUNT TBLMACCOUNT JISPBILCORBILLINGSQA510
XIF440TBLMACCOUNT TBLMACCOUNT JISPBILCORBILLINGSQA510
XIF1006TBLMACCOUNT TBLMACCOUNT JISPBILCORBILLINGSQA510
XIF1070TBLMACCOUNT TBLMACCOUNT JISPBILCORBILLINGSQA510
XIF140TBLMACCOUNT TBLMACCOUNT JISPBILCORBILLINGSQA510
XIF141TBLMACCOUNT TBLMACCOUNT JISPBILCORBILLINGSQA510
XIF228TBLMACCOUNT TBLMACCOUNT JISPBILCORBILLINGSQA510
XIF210TBLMACCOUNT     TBLMACCOUNT JISPBILCORBILLINGSQA510
above indexes are automatically created, for application server we are using Oracle Application Server as well as JBOSS.

Similar Messages

  • Compute Statistics after create a index

    Good night, I tryed it before and got no help.
    So I'll try it again, because I didn't find it yet.
    I have to create some indexes in a production database.
    I have a doubt.
    Do I need to Compute Statistics after creating indexes?
    Or when I create they automatically are computed?
    Thanks for any help.
    The version I'm using is:
    Oracle Database 10g Release 10.2.0.5.0 - 64bit Production
    PL/SQL Release 10.2.0.5.0 - Production
    CORE     10.2.0.5.0     Production
    TNS for 64-bit Windows: Version 10.2.0.5.0 - Production
    NLSRTL Version 10.2.0.5.0 - Production

    Petri BR wrote:
    Good night, I tryed it before and got no help.
    So I'll try it again, because I didn't find it yet.
    I have to create some indexes in a production database.
    I have a doubt.
    Do I need to Compute Statistics after creating indexes?after CREATE INDEX what are the values for the index statistics?
    Or when I create they automatically are computed?Just look at the statistics values after issuing CREATE INDEX & answer the question yourself!

  • Tuning by creating / deleting indexes

    Hello !
    I have a stored procedure which is called once per day to perform some clean up of the database.
    To improve it, I would need to create some indexes, but I don't think it is a good idea to create indexes only for a stored procedure called once per day.
    So I would like to know if it is a possible solution to create the required indexes before calling my stored procedure and remove them as soon as the job is finished. By "possible solution", I do not mean technically possible, but if this is a good idea. If not, what strategy should I use ?
    Some technical points : Oracle 9.2 and the calls are done from java via jdbc.
    By the way, I noticed that it doesn't seem to be possible to rollback indexes creation. Am I right ? So my method would not be good from a transactionnal point of view...
    Thanks to for your help !

    Hello
    How important is it that this process completes in a specific amount of time? We have critical billing processes that only run once per month, but they have to run within a 2 hour window, so we are using all available techniques to ensure the process completes in the time limit.
    I would start by looking to see if the stored procedures can be improved at all before creating the indexes though. What techniques are you using to perform the cleanup? Are you opening a cursor and looping through it, deleting one row at a time? if so, maybe BULK BINDS could help, or you may be able to convert the PL/SQL loops into straight SQL. If you are using straight SQL to do the deletes, can their execution plans be improved by using different constructs?
    If indexes are the best way forward, I would start by doing a benchmark on your test system. Run the stored procedure and store the timings, then create the indexes, analyze the tables and indexes involved and then run the stored procedure again and record the timings. It's then a matter of checking that the extra indexes don't negatively impact any other processes that are insterting or updating the tables that you are cleaning up.
    Once you have some reliable metrics to go on, you can make a decision, until then, you're pretty much flying blind. I personally don't think it is a very good idea to be creating indexes on the fly and the dropping them again every day. If you need indexes, you need them, but you need to prove that they will help and they won't hurt the performance of anything else.
    Just my two penneth!
    HTH
    David

  • Creating an Index HTML in Dreamweaver?

    I am new to Dreamweaver and was trying to up
    load my web to the server.  It seems most servers require an INDEX HTML as the opening p
    age.  However, dreamweaver does not create this.  I have afolder with
    the home page files in it.  How do I make these pages the index.  Its a frame s
    et page

    No I do understand completely.  It is now corrected.  Was simply not aware
    that DW requires an HTML named index.  Some others automatically create an
    index page as your first page.  I have been in contact with my host server
    and have now corrected.  Now, when I go to my temp URL I see exactly what I
    wish to see.  Part of the issue was the way DW handles Frames pages (still
    not sure I get that part?);  although I do now have it working.  I simply
    pointed my server to a new location IE the home page and did not create an
    index page.  My home page is a Frame set page with links to other pages.
    Once my domain has been transferred I'll be glad to share the site with you.
    Perhaps you can provide additional info to a novice DW user.  I have used
    other web sites and have other webs published etc..  Just feel that DW
    offers lots more capabilities and am still learning that program.
    Thanks for your assistance and look forward to continued conversation and
    assistance!
    Rick

  • Call a procedure in a function to create an Index

    Hi,
    i want to doing a text search and have to create some index
    to doing that. I have to choose between create two index according to
    what a search i want to doing.
    The function, which call the sql-statement to search the text is:
    CREATE OR REPLACE FUNCTION SEARCHTEXT(textToSearch IN VARCHAR2)
    RETURN utilities.resultset_ft PIPELINED AS
    BEGIN
    BEGIN
    INDEXTEST;
    END;
    DBMS_OUTPUT.PUT_LINE('get the data');
    -- search the Text in the database Documents
    FOR i in
    (SELECT extract(Document, '/*/*/*/*/location[1]/uri/text()').getStringVal() as location, score(1) as score_nbr
    FROM Mydocuments
    WHERE contains(Document, textTosearch, 1) > 0
    ORDER BY score_nbr)
    LOOP
    PIPE ROW(i);
    END LOOP;
    RETURN;
    END ;
    This function call the procedure "INDEXTEST", which create the index.
    CREATE OR REPLACE PROCEDURE INDEXTEST
    AS
    BEGIN
    EXECUTE IMMEDIATE 'CREATE INDEX FTS_INDEX ON Mydocuments (DOCUMENT)' || ' ' ||
    'INDEXTYPE IS CTXSYS.CONTEXT' || ' ' ||
    'PARAMETERS (''' || 'stoplist Doc_stoplist' || ' ' ||
    'section group CTXSYS.PATH_SECTION_GROUP'')';
    EXCEPTION
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE(sqlerrm);
    END INDEXTEST;
    I call the statement:
    select *
    from TABLE(searchtext('%Let%'))
    and i get this error:
    Error starting at line 1 in command:
    select *
    from TABLE(searchtext('%Let%'))
    Error report:
    SQL Error: ORA-14552: DDL-, Commit- oder Rollback-Vorgang kann innerhalb einer Abfrage oder DML nicht durchgeführt werden
    ORA-06512: in "INDEXTEST", Zeile 5
    ORA-06512: in "SEARCHTEXT", Zeile 15
    14552. 00000 - "cannot perform a DDL, commit or rollback inside a query or DML "
    Cause:    DDL operations like creation tables, views etc. and transaction<br /><br />control statements such as commit/rollback cannot be performed<br /><br />inside a query or a DML statement.<br /><br />Action: Ensure that the offending operation is not performed or
    use autonomous transactions to perform the operation within
    the query/DML operation.
    <p>
    Can someone help me?
    </p>
    Thanks for help

    So, in answer to your question, how to do this....
    Create the necessary indexes before you issue the query to do the search.
    Yes, that means you need to have some intermediate steps to do it, but you should be able to control that from your application level.
    e.g.
    1. User enters search criteria
    2. Application processes criteria and creates necessary indexes
    3. Application queries the results
    4. Application drops the indexes.
    Or, alternatively, it may be an idea to have a look at your overall design and solve the issue why you are actually having to try and create indexes on the fly. If the database structure was correct in the first place then you shouldn't have to create any more indexes than the permanent ones you will have already determined.

  • When I drop a table, automatic creating dummy tables

    Hi, All
    I am using 11g
    in this, whnever i drop a table , Oracle automatically creates 1 table like this name ("BIN$ja1wOa6kYLPgQAB/AQB5ZQ==$0")
    This table i am not able to drop
    Even , when i see in enterprise console these table are not showing
    But when i am seeing through SqlPlus it is showing the name in table list
    pls. provide any solution
    Thanks in advance
    pankaj

    user11308301 wrote:
    Hi, All
    I am using 11g
    in this, whnever i drop a table , Oracle automatically creates 1 table like this name ("BIN$ja1wOa6kYLPgQAB/AQB5ZQ==$0")
    This table i am not able to drop
    Even , when i see in enterprise console these table are not showing
    But when i am seeing through SqlPlus it is showing the name in table list
    pls. provide any solution
    Thanks in advance
    pankajThis is called recyclebin. Dropped tables goes into the recyclebin, and can be restored from the recyclebin.
    If you dropped table with PURGE option, it would not go into recyclebin.
    To drop object from recyclebin itself, use SQL>purge table "BIN$ja1wOa6kYLPgQAB/AQB5ZQ==$0" ;

  • Cannot create text index in partition table on Oracle 10g

    I try to create context index in a table with 15 millions records. The table is divided 5 partitions and each patition has 3 millions records. When I create the context index in the table, the same error always arised. The follow are my work:
    --First create my own lexer
    begin
    ctx_ddl.createperference('my_chinese_lexer','chinese_lexer');
    end;
    --Second create index
    create index idx_part_text3 on tb_test_part(text3)
    indextype is ctxsys.context local (
    partition p1_ix,
    partition p2_ix,
    partition p3_ix ,
    partition p4_ix,
    partition p5_ix)
    parameters('lexer my_chinese_lexer') parallel;
    --error message
    create index idx_part_text3 on tb_test_part(text3)
    Error in 1 line:
    ORA-12801: Parellel Query Server P000 send error signal
    ORA-29855: Error on execute ODCIINDEXCREATE program
    ORA-06510: PL/SQL: User Defined Error
    ORA-06512: In "CTXSYS.DRIDISP", line 244
    ORA-04030: Try to alloc 65548 Bytes (CTX PRM heap,draccbx:message buffer) Out of memory
    ORA-06512: In "CTXSYS.DRIPARX", line 10
    ORA-06512: In "CTXSYS.TEXTINDEXMETHODS", line 359
    ORA-04030: Try to alloc 65548 Bytes (CTX PRM heap,draccbx:message buffer) Out of memory
    ORA-06512: In "CTXSYS.DRUE", line 191
    ORA-06512: In "CTXSYS.DRUE", line 49
    ORA-06512: In "CTXSYS.DRUE", line 24
    ORA-06512: In "CTXSYS.DRUE", line 186
    ORA-06512: In "CTXSYS.DRVDDL", line 682
    ORA-04030: Try to alloc 65548 Bytes (CTX PRM heap,draccbx:message buffer) Out of memory
    ORA-04030: Try to alloc 65548 Bytes (CTX PRM heap,draccbx:message buffer) Out of memory
    ORA-06512: In "CTXSYS.DRUE", line 191
    ORA-06512: In "CTXSYS.DRUE", line 49
    ORA-06512: In "CTXSYS.DRUE", line 24
    ORA-06512: In "CTXSYS.DRVDDL", line 452
    ORA-06510: PL/SQL: User Defined Error
    BTW:
    My oracle 10g run on linux AS3 box with 4xP4 and 6G Mem.
    I set pga_aggregate_target=2200M, and at the beginning of creating index, the max pga alloced is about 1100M, but when one patition finished, the error arised and the max pga alloced suddenly reached 3500M. So in every times, the index status is always like below:
    P1_ix usable
    P2_ix Inprogress
    P3_ix Inprogress
    P4_ix Inprogress
    P5_ix Inprogress
    Thx for any help!

    Try to increase LARGE_POOL_SIZE.
    PGA_AGGREGATE_TARGET is not only parameter that can meddle in parallel execution.
    Looks like parallel execution parameters is not correctly set. Check it all, including PARALLEL_EXECUTION_MESSAGE_SIZE.

  • My iPad acting so weird tonight. When it shut down automatically because the battery has been drained. When I opened it, it creates some weird sounds like *swoosh* blahblah. It does make me feel nervous. Can someone help me? Does it already broken? :(

    My iPad acting so weird tonight. When it shut down automatically because the battery has been drained. When I opened it, it creates some weird sounds like *swoosh* blahblah. It does make me feel nervous. Can someone help me? Does it already broken?

    adetoye50 wrote:
    Dear Contacts Journal Support Team,
    FYI, this is a user to user support forum.  You are NOT addressing Apple here.
    Honestly, I doubt anyone is really going to take the time to read the novel you have written.

  • Oracle Text, create index (indextype is ctxsys.context)

    Dear sirs,
    I am a new user of Oracle Text (Oracle 11g release 11.2) and I am unable to create an index of type ctxsys.context). Any suggestions?:
    code:
    drop table mytable;
    drop index myindex force;
    create table mytable(id number primary key, docs clob);
    insert into mytable values(111555,'this text will be indexed');
    insert into mytable values(111556,'this is a default datastore example');
    commit;
    create index myindex on mytable(docs)
    indextype is ctxsys.context
    parameters ('DATASTORE CTXSYS.DEFAULT_DATASTORE');
    +++++++
    error messages:
    create index myindex on mytable(docs)
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 366

    Please check for invalid objects. Log on as sys or system and run:
    select owner, object_name, object_type from all_objects where status='INVALID';
    Post the results here and we'll advise the next step.
    If any objects owned by CTXSYS are invalid you may need to recompile the CTXSYS schema.

  • My Mozilla Firefox Browser v15.0 open then some file loading and my desktop display automatically created folder name is old Firefox data then ask me chose two

    ''duplicate of https://support.mozilla.org/en-US/questions/936244 - locking this one''
    '''My Mozilla Firefox Browser v15.0 open then some file loading and my desktop display automatically created folder name is old Firefox data then ask me chose two option 1st is Safe Mode or 2nd is Restore so i chose Restore and then open Mozilla Firefox Browser page Blank Black display page,
    How can i do solve this error plz plz plz plz help me out what you say troubleshooting,error or issue.'''

    Did you perform a Firefox Reset either by clicking the button on the Help > Troubleshooting Information page or via the Safe mode start window?
    You may have gotten the Safe Mode start window as the result of not being able to start Firefox more than once after crashes.
    See:
    *http://kb.mozillazine.org/Firefox_crashes
    *https://support.mozilla.org/kb/Firefox+crashes
    If you have submitted crash reports then please post the IDs of one or more crash reports that have this format:
    *bp-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
    You can find the IDs of the submitted crash reports on the <i>about:crashes</i> page.
    *You can open the <b>about:crashes</b> page via the location bar, like you open a website.
    See:
    *http://kb.mozillazine.org/Mozilla_Crash_Reporter
    *https://support.mozilla.org/kb/Mozilla+Crash+Reporter
    If you can't open Firefox then see:
    *http://kb.mozillazine.org/Mozilla_Crash_Reporter#Location_of_crash_reports
    *http://kb.mozillazine.org/Mozilla_Crash_Reporter#Viewing_crash_reports
    "Reset" creates a new default profile with a time stamp appended to identify it and tries to recover settings like bookmarks and history and passwords and cookies and auto-fill data from the old profile, but you lose data like extensions and other customizations.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    Firefox 15+ versions will move the old profile folder to an "Old Firefox Data-##" folder on the Desktop that gets a number appended if you use reset more than once, so you can no longer use the profile manager to revert to the old profile.

  • Automatic create Index of an existing index-list

    I need to create an index for a book (200 pages);
    the list that I have received from the author, includes about 500 words.
    Is there a ability the index-list I’ve got from the author use to create automaticly the index?
    Manually is too tedious for this number of words, on the other hand, it may also be that the index list more changes ...
    Software: InDesign CS 6 (Macintosh)

    Perhaps: http://www.kahrel.plus.com/indesign/index_independent.html

  • Some doubts about automatically created search feature

    Hi everybody,
    if I create a report page apex provides me a basic search feature (a single textbox the user can use to search in various fields).
    The code automatically created is (in apex 2.1.x) something like:
    SELECT ...field lists...
    FROM tablename
    WHERE
    instr(upper("FIRST_NAME"),upper(nvl(:P1_REPORT_SEARCH,"FIRST_NAME"))) > 0 or
    instr(upper("LAST_NAME"),upper(nvl(:P1_REPORT_SEARCH,"LAST_NAME"))) > 0 or
    instr(upper("CITY"),upper(nvl(:P1_REPORT_SEARCH,"CITY"))) > 0 or
    ...and so on, one statement for each field we want to search for.
    I don't understand
    1) why apex uses instr instead of a standard LIKE '%..%'..the choice depends on performance issues?
    2) instead of using the nvl "trick" IMHO should be enough:
    :P1_REPORT_SEARCH IS NULL OR
    instr(upper("FIRST_NAME"),upper(:P1_REPORT_SEARCH,"FIRST_NAME")) > 0 or
    instr(upper("LAST_NAME"),upper(:P1_REPORT_SEARCH,"LAST_NAME")) > 0 or
    instr(upper("CITY"),upper(:P1_REPORT_SEARCH,"CITY")) > 0 or
    which is clearer and maybe faster; am I right?
    3) the nvl "trick" doesn't work for empty fields: if a record has null values for all the fields you search for in the query that record won't be displayed in the report even if the user leave the search box blank and click on "go"...this seems to me a bug, has it been resolved in the last release of APEX?
    4) Last question: this is not actually related to "basic" search...if I need to verify is a search field (imagine an advanced search form) is left blank I can just use ":FIELD_NAME IS NULL"...this work for textboxes but doesn't work for listboxes, which needs something like ":FIELD_NAME = '%null%'" because %null% seems to be the value returned by those kind of fields when left blank...am I right? Which is the meaning of %null%?
    Thank you very much and sorry for the long post.
    Ciao.
    Eugenio

    Hi Eugenio,
    Firstly, you are welcome to alter the generated query however you wish. If you don't like what is created by APEX, change it to suit your purposes.
    To answer your questions:
    1. It's easier for customers to understand INSTR than LIKE. With LIKE, you have to be careful to include the wildcard characters. Performance should be roughly equivalent.
    2. The NVL is necessary. If it were not, then if no search criteria was specified, then no rows would ever be returned. Try your suggested SQL out yourself.
    3. You're correct - this won't work if you have null values for all fields. That's not a bug in APEX, though. I don't know too many application requirements where you would want to maintain null values for all fields. Do you?
    4. You are correct. For List Manager and other items which use a List of Values, if you don't specify a string to use for NULL, then '%null%' will be used. You can override this in the LOV settings for the item, but keep in mind - you have to specify something, otherwise, '%null%' will be used. Patrick Wolf posted a nice, generic solution to this: Re: Null value handling in LOVs
    I hope this helps.
    Joel

  • How to integrate Oracle Tutor Desk manual Index with Oracle ApplicationsR12

    Hi,
    I have created a desk manual Index and related HTML files in oracle Tutor 14. Can anyone help me in integrating the desk manual index with the Oracle Applications Help.
    My questions are:
    -> In what top shd i upload my files using help Upload ?
    -> How do i integrate the desk manual index HTML file with my applications help?
    Has anyone done this before . If so , Can u please guide me through the process.
    Thanks.
    Edited by: Vyas on Apr 8, 2012 12:52 AM

    Here are some instructions - please let me know if this is what you are looking for.
    Kind Regards,
    Emily
    -> In what top shd i upload my files using help Upload ?
    Create Upload and Download Directories on Middle Tier.
         The download path must be a location on the machine that hosts the Application Server - ie, the "middle tier". Directories for the upload (for example, /u01/tutor/upload) and download (for example, /u01/tutor/download) functions must be created on the middle tier.
         ***These directories, as well as any future subdirectories, must have full read/write/execute permissions. The Help Utility will automatically create subdirectories, so the permissions must be set correctly before the Help Utility is used.
         Verify that the HELP_UTIL_DOWNLOAD_DIR directory points to a directory that can be accessed from both the JServ tier and the Concurrent Manager tier.
    From the EBS
    EBS R12 System Administrator > Profile > System > Find System Profile Values
    - Verify Site is checked
    - Verify Profiles with No Values is checked
    - In the profile field, enter %help%
    - Click Find button
    Update system profile values with the correct paths.For example:
         Help Utility Download Path > /u01/tutor/download OR /dbfiles/applcsf/outbound
         Help Utility Upload Path > /u01/tutor/upload OR /dbfiles/applcsf/inbound
         Help System Root > FND:LIBRARY
         TCF:Host > http://<hostname.domainname>
         TCF:Port > <port number>
    -> How do i integrate the desk manual index HTML file with my applications help?
    Use Help Builder to add the DESK_MANUAL_INDEX to the Help Tree
    To learn all the features about customizing Help Navigation Trees, refer to the Oracle Applications System Administration User Guide.
    EBS R12 System Administration > Help Administration > Help Builder
    When Help Builder first opens it may appear as a tiny screen in the upper left corner, if this happens, maximize the screen. You may also have to resize the screen as you may see the entire screen at first.
    - Enter FND in the Node Application field.
    - Press the Find button on the Find Trees Window.
    This should bring the Trees tab region forward with a list of available trees.
    - Scroll down and find FND | US | Applications Help Library in the Trees tab
    - Select and double click on it.
    This will open the Applications Help Library tree in the left frame
    - Expand the Application Help Library by clicking on the + next to it.
    - Click the New Node icon on the toolbar.
    - Enter the following information in Properties window.
    The next items assume the default Desk Manual Index terminology is used.
    If your organization uses or plans to use different terms, adjust the entries in the various properties field accordingly.
         Prompt: Desk Manual Index
         Description: Desk Manual Index
         Data: @DESK_MANUAL_INDEX
    Or enter the exact Desk Manual Index file name if it is different than the example.
    - Click the View button to verify the link works.
    You may have to experiment with using the @ sign. It may not be required.
         Click the Apply button.
    The Desk Manual Index will now appear as a Node under the Application Help Library. If the name is NOT fully displayed, click on the - (minus) sign to expand it.
    Link does not work
    - Change the information in the Data field.
    - Delete the @ and add .htm extension
    Example: DESK_MANUAL_INDEX.htm
    - Click the View button to verify the link works.
    - Click on the Save icon.

  • Firefox 29 is no longer automatically creating bookmarks backups.

    I hate to be posting another question having finally (I believe) finding a work around for the "Firefox 29 fails to exit properly and remains running in task manager" problem.
    https://support.mozilla.org/en-US/questions/997670
    However, in Firefox 28 FF would automatically create a new bookmarks backup upon first opening of each day and the number of bookmark backups could be set in about:config setting:
    browser.bookmarks.max_backups
    Since installing Firefox 29 this functionality does not appear to be working. Is this by design or another "issue"? Has anyone else noticed this issue?
    Please don't ask me to "reset to default state", "run in safe mode", etc. I just went through all that with the above "Failing to exit properly" thread. I know I can manually backup bookmarks. I would like to know whether this is by design, if other people have noticed this, or I am the only one experiencing this.
    Here is my troubleshooting information (excluding the thousand references to my printer):
    <pre><nowiki>Application Basics
    Name: Firefox
    Version: 29.0
    User Agent: Mozilla/5.0 (Windows NT 6.1; rv:29.0) Gecko/20100101 Firefox/29.0
    Crash Reports for the Last 3 Days
    All Crash Reports
    Extensions
    Name: Firebug
    Version: 1.12.8
    Enabled: true
    ID: [email protected]
    Important Modified Preferences
    accessibility.typeaheadfind.flashBar: 0
    browser.cache.disk.capacity: 51200
    browser.cache.disk.smart_size_cached_value: 358400
    browser.cache.disk.smart_size.enabled: false
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.places.smartBookmarksVersion: 6
    browser.search.suggest.enabled: false
    browser.search.useDBForOrder: true
    browser.sessionstore.upgradeBackup.latestBuildID: 20140421221237
    browser.startup.homepage: http://www.wcwcw.com/
    browser.startup.homepage_override.buildID: 20140421221237
    browser.startup.homepage_override.mstone: 29.0
    browser.tabs.loadInBackground: false
    browser.urlbar.autocomplete.enabled: false
    dom.mozApps.used: true
    dom.w3c_touch_events.expose: false
    extensions.lastAppVersion: 29.0
    font.internaluseonly.changed: true
    general.autoScroll: false
    gfx.direct3d.last_used_feature_level_idx: 1
    keyword.URL: https://www.google.com/search?q=
    network.cookie.cookieBehavior: 2
    network.cookie.lifetimePolicy: 1
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1399218213
    places.history.expiration.transient_current_max_pages: 80511
    plugin.disable_full_page_plugin_for_types: application/vnd.fdf,application/vnd.adobe.xdp+xml,application/vnd.adobe.xfdf
    plugin.importedState: true
    plugin.state.npdeployjava: 0
    plugin.state.npgoogleupdate: 0
    print.printer_HP_DeskJet_710C_(Copy_1).print_bgcolor: false
    privacy.clearOnShutdown.cache: false
    privacy.clearOnShutdown.cookies: false
    privacy.clearOnShutdown.formdata: false
    privacy.clearOnShutdown.offlineApps: true
    privacy.clearOnShutdown.sessions: false
    privacy.cpd.cache: false
    privacy.cpd.cookies: false
    privacy.cpd.offlineApps: true
    privacy.cpd.sessions: false
    privacy.popups.showBrowserMessage: false
    privacy.sanitize.migrateFx3Prefs: true
    privacy.sanitize.timeSpan: 0
    security.disable_button.openCertManager: false
    security.disable_button.openDeviceManager: false
    security.warn_viewing_mixed: false
    storage.vacuum.last.index: 1
    storage.vacuum.last.places.sqlite: 1396579220
    Graphics
    Adapter Description: NVIDIA GeForce 9400 GT
    Adapter Drivers: nvd3dum nvwgf2um,nvwgf2um
    Adapter RAM: 1024
    ClearType Parameters: Gamma: 2200 Pixel Structure: B ClearType Level: 50 Enhanced Contrast: 300
    Device ID: 0x0641
    Direct2D Enabled: true
    DirectWrite Enabled: true (6.2.9200.16571)
    Driver Date: 12-19-2013
    Driver Version: 9.18.13.3221
    GPU #2 Active: false
    GPU Accelerated Windows: 1/1 Direct3D 10
    Vendor ID: 0x10de
    WebGL Renderer: Google Inc. -- ANGLE (NVIDIA GeForce 9400 GT Direct3D9Ex vs_3_0 ps_3_0)
    windowLayerManagerRemote: false
    AzureCanvasBackend: direct2d
    AzureContentBackend: direct2d
    AzureFallbackCanvasBackend: cairo
    AzureSkiaAccelerated: 0
    JavaScript
    Incremental GC: true
    Accessibility
    Activated: false
    Prevent Accessibility: 0
    Library Versions
    NSPR
    Expected minimum version: 4.10.3
    Version in use: 4.10.3
    NSS
    Expected minimum version: 3.16 Basic ECC
    Version in use: 3.16 Basic ECC
    NSSSMIME
    Expected minimum version: 3.16 Basic ECC
    Version in use: 3.16 Basic ECC
    NSSSSL
    Expected minimum version: 3.16 Basic ECC
    Version in use: 3.16 Basic ECC
    NSSUTIL
    Expected minimum version: 3.16
    Version in use: 3.16</nowiki></pre>
    Kind Regards,
    Axis

    This is a bit of a "bump" with some new things I have tried. I have run the Places Maintenance add-on (again) and places.sqlite integrity seems absolutely fine.
    Places Maintenance: https://addons.mozilla.org/firefox/addon/places-maintenance/
    I have re-installed FF 29.
    I am able to create manually, and restore, bookmark backups without a hitch.
    I did delete places.sqlite and restarted FF 29. The only thing I lost was all my bookmark Icons. So I re-added the former places.sqlite. Of course, I would have to wait until tomorrow morning to know for sure, but since the Places Maintenance add-on indicated no problems, and since I can manually create them, I am quite sure it is not a corrupted places.sqlite file.
    I tried what may be a dubious add-on, BackupFox, and it failed to create a new backup but left a temp file in the main profile folder.
    Logic tells me that if I can manually create and restore bookmark backups, then something in the engine(?) may be responsible but I do not know enough to go further with that. Permissions must be O.K. or I wouldn't be able to make (manually) a backup.
    I did not have this problem at all with FF 28. Rather, I was asking cor-el how to limit the number of backups, which he showed me. What makes this difficult to test is that I would have to wait until the first opening of FF each day to tell.
    I can't tell if this problem is "only me" or affecting others, however, (no insult intended) I can paste into the support.mozilla.org page search box the exact title of this thread and not find it. I shows up number 1 on Google doing similar search. People who aren't checking their profile folder each day might not even be noticing this.
    cor-el, or anybody, have you found auto backups have stopped in FF 29 for you? Anyone who reads this please let me know if your bookmark auto-backup is working. Just peak in your profile and see if you have a new one each day.
    Does anyone know just what .dll or .exe or what actually is triggered how that causes the auto-backup to occur? Is it the maintenance service?
    What I have not tried is creating another profile because this one seems just fine and I has always worked before 29, and still does work, as far as profiles go. I need to know what "triggers" auto bookmark backup and I doubt it is my profile.
    Regards again,
    Axis

  • Error when creating spatial index in 10g

    Hello.
    I have a problen when I try to create a spatial index. The strange thing is that the same commands always works fine in some machines, but if always fails in others. I tryed in diferent versiones of Oracle, but I have the error in al of them. The versions I have tryed are:
    - 10.2.0.1
    - 10.2.0.4
    The operating systems are:
    Windows XP professional 32 bits
    Windows 2003 Server 32 bits
    These are the steps i make:
    1) Create a Table with a SDO_GEOMETRY column (GEOMETRY)
    2) Load data with SQLLDR (I hve tryed different SRID's, and all fail)
    So far everything is ok
    3) Create the INDEX
    When I execute the CREATE INDEX command CREATE INDEX MADRID_SX ON MADRID (GEOMETRY) INDEXTYPE IS MDSYS.SPATIAL_INDEX;
    I obtain the error:
    ERROR en linea 1:+
    ORA-29855: se ha producido un error en la ejecucion de la rutina+
    ODCIINDEXCREATE+
    ORA-13282: fallo al inicializar la transformacion de coordenadas+
    ORA-06512: en "MDSYS.SDO_INDEX_METHOD_10I", line 10+
    I too have noticed that if I execute the next command, I have an error:
    SELECT MDSYS.sdo_cs.transform(sdo_geometry(2001,8192,sdo_point_type(13.6,52.4,null),null,null),25830) from dual;
    ERROR en linea 1:+
    ORA-13282: fallo al inicializar la transformacion de coordenadas+
    ORA-06512: en "MDSYS.SDO_CS", linea 75+
    ORA-06512: en "MDSYS.SDO_CS", linea 112+
    ORA-06512: en "MDSYS.SDO_CS", linea 2678+
    And if I execute the next command, I too have another error:
    SELECT SDO_CS.VALIDATE_WKT(25830) FROM DUAL;
    FALSE (169)*
    Any ideas? Could it be related with something inside the machines, user privileges, etc.?
    Thanks in advance.

    I have found that the problem is to use a SRID of AUTH_NAME column in MDSYS.CS_SRS table without the value "Oracle." in it.
    If I use an Oracle’s SRID, everything works fine. If I use an EPSG’s SRID, fails.
    For example, this command uses an Oracle SRID (8192) and one from the EPSG (25830), and fails:
    SELECT MDSYS.sdo_cs.transform(sdo_geometry(2001,8192,sdo_point_type(13.6,52.4,null),null,null),25830) from dual;
    ERROR en linea 1:
    ORA-13282: fallo al inicializar la transformacion de coordenadas
    ORA-06512: en "MDSYS.SDO_CS", linea 79
    ORA-06512: en "MDSYS.SDO_CS", linea 116
    ORA-06512: en "MDSYS.SDO_CS", linea 2690
    However, if I use two Oracle SRID (8192 and 83030), it works.
    SELECT MDSYS.sdo_cs.transform(sdo_geometry(2001,8192,sdo_point_type(13.6,52.4,null),null,null),83030) from dual;
    SDO_GEOMETRY(2001, 83030, SDO_POINT_TYPE(1625183.71, 5936269.06, NULL), NULL, NULL
    Therefore, the problem seems to be to use a non Oracle SRID.

Maybe you are looking for

  • Firefox opens at startup on my iMac. It is not in startup items and not checked to open at login.

    There aren't really any more details to add. I have checked everything I can think of in the Library folder and thrown out anything I thought might affect it. Firefox is not set as my default browser. I have read many threads of people having this pr

  • Gap between front screen + stainless steel band

    I started to get a problem with the proximity sensor with my last phone, went to the apple store to get a replacement yesterday. I was a happy camper until i saw that one of the business cards in my pocket had managed to get stuck in between the scre

  • Apple Configurator & Reset

    The introduction of Apple Configurator is fantastic, however I seem to see a problem. Even with restrictions setup an individual only needs to hit the "Erase all content and settings" to return the ipad to factory settings. Which in an education sett

  • Installation a Polish Version(Design Std. CS6) in German ?

    I have bought a offical Design Std. CS6 version, but it is in Polish language ! Before I sent it back.... Is it possible to install that in German ?? ...or is it possible to download the German Version with the offical product key from that polish ve

  • Which view object classes should be used by managed bean in ViewController?

    I just like to find out which java implementation classes created for a view object should be referenced in a managed bean on the UI side. For my view object InfoVO, I can create the following classes: View Object class: InfoVOImpl View Row class: In