Does oracle db serialize concurrent read-only SELECT ? (ora10gr2)

Hi all.
Sorry for a bit provocative topic name )
While testing multiple concurrent select request I found that
the server seems to serialize cursor SELECT done from multiple threads (Java jdbc).
There is no write operations on the table.
I'm doing a SELECT from 2 tables and measure the time it takes to execute the select and fetch matched rows. The result of N concurrent SELECTs is approximately N times a single SELECT.
The logic behind: there is a black list of customers with their all variations of names(spellings, AKA, former known as... etc). We need to check all system customers against the black list.
Technical data:
Table with names is about 1,000,000 records.
Customer table contains about 500,000 records.
Customers to verify: 400,000
Here are the tables:
CREATE TABLE CUSTOMER_ENTITY
ID NUMBER(19) NOT NULL,
IS_ACTIVE NUMBER(1) NOT NULL,
IS_COMPANY NUMBER(1) NOT NULL,
primary key (ID)
CREATE INDEX IDX_CUSTENTITY_ACTIVE_COMPANY ON CUSTOMER_ENTITY
(IS_ACTIVE, IS_COMPANY);
create table RDB.CUSTOMER_NAMES (
ENTITY_ID number(19,0) not null,
TYPE varchar2(255 char) not null,
FIRST_NAME nvarchar2(255),
LAST_NAME nvarchar2(255),
COMPANY_NAME NVARCHAR2(255),
Constraints and indices:
ALTER TABLE CUSTOMER_NAMES ADD (
CONSTRAINT FK3B65D3874835ED42
FOREIGN KEY (ENTITY_ID)
REFERENCES CUSTOMER_ENTITY (ID)
ON DELETE CASCADE);
CREATE INDEX IDX_CUST_NAMES ON CUSTOMER_NAMES
(ENTITY_ID);
CREATE INDEX IDX_CUSTNAMES_LASTNAME ON CUSTOMER_NAMES
(NLSSORT("LAST_NAME",'nls_sort=''BINARY_CI'''));
CREATE INDEX IDX_CUSTNAMES_COMPANYNAME ON CUSTOMER_NAMES
(NLSSORT("COMPANY_NAME",'nls_sort=''BINARY_CI'''))
CREATE INDEX IDX_CUST_NAMES_TYPE ON CUSTOMER_NAMES
(TYPE);
SELECT statement:
set timing on;
select * from
(select distinct customer.id, customer.birth_day, customer.birth_month, customer.birth_year from
(select names.entity_id from RDB.CUSTOMER_NAMES names where names.LAST_NAME='KRAAIPOEL' )
namesin inner join RDB.CUSTOMER_ENTITY customer on namesin.entity_id=customer.id) customerin
inner join RDB.CUSTOMER_NAMES namesout on customerin.id=namesout.entity_id
00:00:00:23
Before check the session is altered to enable string case insensitive comparison as follows:
alter session set nls_comp=ansi
alter session set nls_sort=binary_ci
I have no idea, no clue where is a bottleneck.
I appreciate your help.

Hello Sybrand Bakker.
Your assumptions about the KGB are very close )
OS: Red Hat Linux 3.2.3-42 (2.4.21-20.EL)
Hardware: Dual-Core AMD Opteron(tm) Processor 2214 (1.6GHz), RAM 3GB
NLSSORT is utilized on a session level.
alter session set nls_comp=ansi;
alter session set nls_sort=binary_ci;
set autotrace traceonly
We search among all customer's names (aka, spellings and so on..), but the result should contain customer's primary name:
select * from
        (select distinct customer.id, customer.birth_day, customer.birth_month, customer.birth_year from
                     (select names.entity_id from RDB.CUSTOMER_NAMES names where names.LAST_NAME='KRAAIPOEL' and (names.FIRST_NAME is NULL OR names.FIRST_NAME=NVL('robert',names.FIRST_NAME))) namesin
                  inner join RDB.CUSTOMER_ENTITY customer on namesin.entity_id=customer.id) customerin
         inner join RDB.CUSTOMER_NAMES namesout on customerin.id=namesout.entity_id where namesout.type='Primary Name'
Output is:
Execution Plan
   0      SELECT STATEMENT Optimizer Mode=ALL_ROWS   2   236   22                          
   1    0   TABLE ACCESS BY INDEX ROWID RDB.CUSTOMER_NAMES 1   66   3                          
   2    1     NESTED LOOPS   2   236   22                          
   3    2       VIEW   2   104   17                          
   4    3         HASH UNIQUE   2   98   17                          
   5    4           NESTED LOOPS   2   98   16                          
   6    5             TABLE ACCESS BY INDEX ROWID RDB.CUSTOMER_NAMES 2   70   12                          
   7    6               INDEX RANGE SCAN RDB.IDX_CUSTNAMES_LASTNAME 12     3                          
   8    5             TABLE ACCESS BY INDEX ROWID RDB.CUSTOMER_ENTITY 1   14   2                          
   9    8               INDEX UNIQUE SCAN RDB.SYS_C0020745 1     1                          
  10    2       INDEX RANGE SCAN RDB.IDX_CUST_NAMES 2     2                          
Statistics
        441  recursive calls
          0  physical write total IO requests
          0  physical write total multi block requests
          0  physical write total bytes
          0  physical writes direct temporary tablespace
          0  cursor authentications
          0  queries parallelized
          0  DML statements parallelized
          0  Parallel operations downgraded to serial
          0  Parallel operations downgraded 75 to 99 pct
          1  rows processedCould you explain the plan, please?
I think the cause is in
are exhausting your buffer cache, and subsequent invocations have to reload the data from disk.
Is there a way (does it help?) to increase the size of that buffer?
Database instance parameters:
ecom.__db_cache_size=88080384
ecom.__java_pool_size=4194304
ecom.__large_pool_size=4194304
ecom.__shared_pool_size=67108864
ecom.__streams_pool_size=0
*.db_block_size=8192
*.db_file_multiblock_read_count=16
Thanks.
null
null

Similar Messages

  • Concurrent read-only access vs syncronized

    I have a certain object that contains two public HashMaps. According to documentation the HashMaps are not syncronized by default, although its possible to have it syncronized using some methods on the Collection interface.
    These HashMaps are only populated at the beginning of the process by a single thread and from here no more updates, inserts or deletes are done.
    Later on several diferent threads are able to concurrently read data out of these Maps.
    My question is: if the only access type is read-only am I really obligated to syncronize the Maps ?
    Is there any problem if two concurrent threads READ from the same memory space ?

    An interesting question. I believe that reading without synchronisation would be safe. If you are writing a package that will be used by others, you should use "final" and "private" where appropriate to guarantee that nobody will extend your class to encorporate a concurrent writer.

  • Why does standby start automatically in read only and not in mount?

    hi there,
    running 10.2.0.4 EE on windows 2008
    i have the problem that when starting the windows servcie for the standby database, the db automatically runs into the read only mode and NOT as desired in the mout state
    only if I am starting the standby like following:
    STARTUP NOMOUNT;
    ALTER DATABASE MOUNT STANDBY DATABASE
    I will get my desired result.
    what do I have to configure in order that restarting the windows service (or only make a startup on the sqlplus prompt...) will bring up the standby in mount state?
    thanks in advance
    stefan

    This is the expected behaviour. In 10g , if we invoke startup on a standby database, it automatically opens the database in READ ONLY mode. Not tested the same on other versions. You may want to use -STARTMODE option with oradim to set the instance startup to manual and bring it up manually every time.
    HTH

  • Read only source duplicate

    Hi
    1-) If the source database is read only, do i still need recovery in the destination when i active duplicate ?
    2-) If i issue, "alter database read only", does system,undo tablespace become read only as well ? As far as i know, system tablespace can never become read only.
    3-) If I manually put all tablespaces to read only mode (except undo,system ) and active duplicate source database. Do i still neeed recover on destination ?
    Thanks

    Hi,
    >>1-) If the source database is read only, do i still need recovery in the destination when i active duplicate ?
    Please check the status of tablespace in database and decide.  If the database is opened in read only mode, why do you think it needs recovery ? did you try to corrupt some data files manually at OS level ?
    2-) If i issue, "alter database read only", does system,undo tablespace become read only as well ? As far as i know, system tablespace can never become read only.
    No, You can check the status of these files yourself as below:
    I have run this query on standby active database and result comes;
    select TABLESPACE_NAME, STATUS from dba_tablespaces where TABLESPACE_NAME in ('SYSAUX', 'SYSTEM', 'UNDOTBS1') ;
    TABLESPACE_NAME                STATUS
    SYSAUX                        ONLINE
    SYSTEM                        ONLINE
    UNDOTBS1                      ONLINE
    3-) If I manually put all tablespaces to read only mode (except undo,system ) and active duplicate source database. Do i still need recover on destination ?
    It is not clear, are you doing rman restore on the other side ?
    Pradeep

  • SQL Server 2005 replaced with SQL Server 2014 trying to connect front end Access as guest (read only ODBC)

    We have replaced a SQL Server 2005 with a SQL Server 2014 (new physical server.)  Have the new server set up to use SQL Server login OR Windows user login. Had old server connecting (for a particular DB) to front end Access (2010 or 2013) as guest for
    anyone logged into the Windows NT Network with a read only ODBC connection. Have the DB in the new server set to include guest as db_datareader (with only SELECT permission for the securables of each table and view being linked) but when any Windows user not
    specifically listed as a SQL DB user tries to use the front end they get an error of:
    Microsoft SQL Server Login
    Connection failed:
    SQL State: '28000'
    SQL Server Error: 18456
    [Microsoft][OCBC SQL Server Driver][SQL Server] Login failed for user {domain\user}.
    After closing that pop-up window a server login window appears. Of course, since the guest user is not specifically listed as a user in the DB that fails also. It seems like there should be a very simple solution to this, but I can't seem to find it. I want
    to allow anyone logged in on the Windows system (locally) to be able to open the MS Access file (on their work station machine) and run their own (read only; select) queries on the SQL Server database. Any suggestions?
    Thanks a billion in advance ----

    Thanks for the response Olaf. I have now spent weeks researching this. I realize that using the guest account in most situations is not advised. As mentioned, I have restricted the guest account to allow the db_datareader role only, and have explicitly denied
    all other roles, as well as allowing select only, and still have no access for the guest account.
    The suggested fix in the second link you provided, of using Windows groups is not plausible for my situation either. We are a scientific field research institution, with a few long term users and lots of users that may have Windows accounts for a few months,
    and then they are gone. It would be a nightmare for the network tech to try to keep a group account up to date, and we need to give access (read only, of course) to anyone logged into the system. Realize that the ONLY access of any kind to this database is
    thru MS Access ACCDB, using a (by default) read only OCDB connection.
    This type of access is used particularly because researchers need to be able to set up their own queries, and the MS Access query interface is particularly convenient for people who are not themselves SQL experts, yet are trying to get some very advanced
    levels of output. Putting the database online is not practical because then we are back to the need for a comprehensive query interface, and just picking up general subsets of the data online (from a basic web page search feature) would be out of the question,
    since the result set would involve hundreds of thousands if not millions of records.
    So - that said - what exactly would you suggest, assuming we don't have the funds to buy a whole new system, and have spent plenty of money with Microsoft's Enterprise level MS Office so that all work stations have MS Access, and Microsoft's SQL Server,
    as well as running our network on Microsoft's network software.

  • Read only columns in Planning Webform

    Hi All,
    I have build a form with Period (months jan, feb and Mar) and members of Custom called Type dimension in Columns.
    The members in Type dimension I have selelcted is Type1, Type1 Adj, Type2,Type2 Adj.
    My requirement is that I want to show Type1 and Type2 Columns as READ ONLY where the users should not enter any data in those two coulmns.
    Is there any way to achieve this requirement.  I am using Planning 11.1.2.2 version.
    Any suggestions would be appreciated.
    Thanks in Advance

    Hi,
    Please follow the below steps to make particular columns as read-only in Hyperion 11.1.2.2.
    1) Open the form in Edit mode
    2) Click on the Layout tab, once layout tab is opened. Please click on the below Column which you want to make as "Read-only" (A, B, C etc), if you have three columns then you could see A, B and C.
    Note: Mouse Cursors are very sensitive in latest version, if you click on the right place only, you will get the required proprieties, otherwise it wont show any properties.
    In this example, am going to make Column B as read only. Exactly move the cursor on "B" and click, in the right hand side, you could see lot of properities, click on "Segment Properties" and under that option as "Read only", select that check box to make column as read only.
    Thanks,
    Prakash

  • Backup Volume Read Only error 99% solution

    After about 2 months of the "Back Up Volume Read Only - select different volume..." issue, I found a 99% solution - or perhaps a fluke (I'm a mac newbie).
    My computer would back up about 1/2 of the 20gig's of files before failing. After removing the apostrophe, erasing, etc. I went to options and chose most of my files as "do not back up". What do you know, it finally worked.
    Then I went back and added the rest of the files back to the backup -- didn't work again.
    Long story short, after a few, fun filled hours, I triangulated down to one file in Documents (a circus pony notebook file) that will cause my backup to fail. If that file is in there, no backup. Take it out, no problem. btw, I have other notebook files that backup fine.
    Anyone have any suggestions besides leaving that file out forever?

    After about 2 months of the "Back Up Volume Read Only - select different volume..." issue, I found a 99% solution - or perhaps a fluke (I'm a mac newbie).
    My computer would back up about 1/2 of the 20gig's of files before failing. After removing the apostrophe, erasing, etc. I went to options and chose most of my files as "do not back up". What do you know, it finally worked.
    Then I went back and added the rest of the files back to the backup -- didn't work again.
    Long story short, after a few, fun filled hours, I triangulated down to one file in Documents (a circus pony notebook file) that will cause my backup to fail. If that file is in there, no backup. Take it out, no problem. btw, I have other notebook files that backup fine.
    Anyone have any suggestions besides leaving that file out forever?

  • AJAX and Read-Only Items

    I used the examples from Carl Backstrom and Denes Kubicek to get my cascading select list working.
    I have two select list fields (Origin and Type) that I use to determine the data to appear in a third select list field (Customer).
    With help from people on this forum I was able to get things to work.
    Now I have an issue when I conditionally make the Origin field "read-only".
    When this occurs, data appears in my "Customer" select list on the INITIAL display of the form.
    However, when I change the value in the "Type" select list field, no data appears in the Customer select list.
    If I change the "Origin" field to NOT be read-only, I can change the value in the "Type" select list field and everything works OK.
    I hope I have given enough information.
    THANKS in advance.
    Raymond

    Raymond,
    It looks like read-only select is really special:
    (I replaced < > with [])
    When select is not read-only generated html is:
    [select name="p_t01" size="1" id="P1_ORIGIN_NO"
    onchange="get_AJAX_SELECT_XML('P1_ORIGIN_NO','P1_DISPLAY_SSA','','','P1_CUSTOMER','CASCADING_CUSTOMER_LOV')";
    [option value="%null%"]%[option]
    [option selected="selected" value="001"]DOTIKI MINE[option]
    [option value="S01"]ECO COAL PELLETIZATION NO. 12, LLC[option]
    [select]
    It means that P1_ORIGIN_NO in  get_AJAX_SELECT_XML will be "001"
    But when select is read-only your html code is:
    [input type="hidden" name="p_t01" value="001" /]
    [span id="P2_ORIGIN_NO"
    onchange=
    "get_AJAX_SELECT_XML('P2_ORIGIN_NO','P2_DISPLAY_SSA','','','P2_CUSTOMER','CASCADING_CUSTOMER_LOV')";
    DOTIKI MINE
    [span]
    [pre]
    P2_ORIGIN_NO in  get_AJAX_SELECT_XML will be "DOTIKI MINE" which I think is wrong.
    It looks like for read-only you need hidden item with code of
    drop - down list or somehow you have to reach [input type="hidden" name="p_t01" value="001" /]
    Lev
    Message was edited by:
            le                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Menu Bar items read-only in 10.5.2

    After 10.5.2 upgrade, I'm unable to use a lot of drop-down menus for Menu Bar items such as Bluetooth, Airport, Date&Time, International etc.
    Spotlight and third-party menus (Little Snitch, MiniBatteryLogger) are OK, but system ones became all-gray (in case of Bluetooth and Airport) or just read-only ( selection of menu item doesn't do anything).
    I have to do System Preferences->Network to switch between WiFi networks.
    Is anyone experiencing similar issue? Any idea how to fix it?

    Well, looks like an issue came from SIMBL Plugins, such as WiFind.
    Just move the "WiFind.bundle" from the "/Library/Application Support/SIMBL/Plugins/"
    Somehow, if automatic login is set you are not getting "System UI Error, plugin disabled" and stuck with read-only menus.
    I've created another user account, logged in as another user and immediately got "System UI Error".
    After removing WiFind.bundle and reboot everything came back as suppose to be.

  • Making Read Only A select List Item

    Hi,
    I am using Application Express 3.1.1.00.09 version.
    If the date field is future date then the Select List field should become Read only.
    I tried to make "read only".
    When I made it "read only" '>[] is displayed???
    Does some one have a solution?
    Thanks,
    Priyanka.

    Hi Leckraj,
    I assume that
    the select list is not displayed at all.means that your page item is not rendered as a select list input control, but it's rendered as text only, right? That's the nature of the read only condition, it will render almost all controls as text only.
    About the dynamic action solution. That can be simplified and doesn't require a hidden item or JavaScript.
    1) Create a dynamic action which fires for the "Page Load" event
    2) As (Server Side) Condition Type set "exists (SQL quer returns...)" and specify your SQL statement
    3) Use a "Disable" action to disable your select list page item
    The above dynamic action will only be included and executed on the page, if the SQL statement returns a value.
    Note: Please keep in mind that dynamic actions are browser based operations, for a skilled user it's no problem to enable the select list and modify the value. To secure it you should add a server side validation to verify if the user is really allowed to modify the value. That's the difference to the "Read Only Condition", because in that case the APEX engine guarantee that the value can't be modified.
    Regards
    Patrick
    Member of the APEX development team
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Selecting all columns makes oracle use more indexes than only selectng one?

    I have 3 queries here that differ only slightly, conceptually, but the plans are massively different. What I cant work out is that the difference is only in the select list.. The fields referenced in the where clause are properly indexed for this purpose
    SELECT
      scc.expiry_date
    FROM
      bw3.int_file_log_details  ifld
      INNER JOIN
      bw3.svc_card_status_change scsc
      USING
        (institution_number, file_number)
      INNER JOIN bw3.svc_client_cards scc
      USING
        (card_number)
    WHERE
      institution_number = '00000001' AND
      file_number = '00002504'This one above does a full table scan of SCC, over 3.5 million records
    SELECT
      card_number
    FROM
      bw3.int_file_log_details  ifld
      INNER JOIN
      bw3.svc_card_status_change scsc
      USING
        (institution_number, file_number)
      INNER JOIN bw3.svc_client_cards scc
      USING
        (card_number)
    WHERE
      institution_number = '00000001' AND
      file_number = '00002504'This one above does an index fast full scan of SCC's pk (which is cardnumber), as does doing a "SELECT null as dummy FROM..."
    SELECT
    FROM
      bw3.int_file_log_details  ifld
      INNER JOIN
      bw3.svc_card_status_change scsc
      USING
        (institution_number, file_number)
      INNER JOIN bw3.svc_client_cards scc
      USING
        (card_number)
    WHERE
      institution_number = '00000001' AND
      file_number = '00002504'This one above does the index range scan of the columns mentioned in the where clause and two index unique scans to link in IFLD and SCC (because they are joined on their PKs)
    I would expect all queries to run this way and completes in ~0.01 seconds
    Now, I get that oracle will sometimes use only an index instead of a table access when the requested data can be got from the index, but the actual query is pulling data from some columns not in indexes, so must be accessed in the table:
    SELECT
      scsc.card_prod_data as "Field1",
      substr(card_number,1,4)||' '||
        substr(card_number,5,4)||' '||
        substr(card_number,9,4)||' '||
        substr(card_number,13,4)||' '||
        substr(card_number,17) as "Field2",
      '                           ' as "Field3",
      scc.emboss_line_1 as "Field4",
      scc.emboss_line_2 as "Field5",
      TO_CHAR(TO_DATE(scc.last_issued_date, 'YYYYMMDD'), 'MM/YY ')||
        TO_CHAR(TO_DATE(scc.expiry_date, 'YYYYMMDD'), 'MM/YY  ')||
        '    ' as "Field6",
      'B'||
        card_number||
        '^'||
        RPAD('0', 27, ' ')||
        '^'||
        to_char(to_date(scc.expiry_date, 'YYYYMMDD'), 'YYMM')||
        service_category_code||
        '000000000000' as "Field7",
      card_number||
        '='||
        to_char(to_date(scc.expiry_date, 'YYYYMMDD'), 'YYMM')||
        service_category_code||
        '000000000000' as "Field8",
      card_number as "Field9",
      scsc.cvv_cvc2 as "Field10"
    FROM
      bw3.int_file_log_details  ifld
      INNER JOIN
      bw3.svc_card_status_change scsc
      USING
        (institution_number, file_number)
      INNER JOIN bw3.svc_client_cards scc
      USING
        (card_number)
    WHERE
      institution_number = '00000001' AND
      file_number = '00002504'This query above, which uses some data from all tables, does a table full scan of SCC, yet if I SELECT * FROM.. I get the expected index usage and table access by index rowid for all tables..
    Why is oracle doing an FTS when I choose only some columns, yet doing index access when I select * ?
    Edited by: charred on Oct 5, 2010 11:37 AM

    Selectivity of indexes?
    For a query linking these tables:
    int_file_log_details <-> svc_card_status_change <-> svc_client_cards
    I'm expecting Oracle to:
    Use an index range scan of the index on svc_card_status_change that is a nonunique index of institution_number and file number. Selectivity of this index is:
    1 institution number in the entire table
    59 distinct file numbers in the entire table
    4.1million records in the entire table
    From there, with the records it found, to use index unique scan of the PKs of int_file_log_details (file_number: 1 record required) and PK of svc_client_cards (card_number: poetntially thousands of records required)
    I can understand if oracle might decide it can get 69k records out of 4.1 million faster by FTS the cards table rather than having the indirection of the index... what I cannot understand is:
    If I select all the data from the query (SELECT *) it does unique index scans for the 2 records
    If I select say, only one non-indexed non-joined column from each table, oracle prefers a FTS of the cards table..
    Is oracle not realising that there are only 2 records I need out of cards? Why would select * differ? Is it that oracle thinks "select * is a large amount of data, so it'll be faster to use the index and target certain rows" vs "select one_column can be garnered more quickly by scanning the table and generating a lower overall memory load" ?

  • Can no longer select text in email template or read only field with mouse using IE or Firefox?

    Hi Guys,
    I can no longer select text in email template or read only field using my mouse in IE or Firefox anymore. We are using CRM 2011 rollup 18 applied with IE 11 and the latest version of Firefox. We only applied roll up 18 in Feb when this issue began.
    Thanks
    Dave
    David Kelly

    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    (You also can clear Firefox's cache completely using:
    orange Firefox button ''or'' Tools menu > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now")
    (2) Remove the site's cookies (save any pending work first) using either of these. While viewing a page on the site:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    Then try reloading the page. Does that help?
    These features rely on JavaScript, and it sounds as though you have scripting enabled if you get (the wrong) color changes. Some add-ons might alter the way scripts operate, so a standard diagnostic to bypass interference by extensions (and some custom settings) is to try Firefox's Safe Mode.
    First, I recommend backing up your Firefox settings in case something goes wrong. See [[Backing up your information]]. (You can copy your entire Firefox profile folder somewhere outside of the Mozilla folder.)
    Next, restart Firefox in Firefox's Safe Mode ([[Safe Mode]]) using
    Help > Restart with Add-ons Disabled
    In the dialog, click "Start in Safe Mode."
    If those features work correctly, this points to one of your extensions or custom settings as the problem.
    To also disable plugins, you can use this page:
    orange Firefox button ''or'' classic Tools menu > Add-ons > Plugins category
    Any change?

  • How to remove a oracle form from read only format

    I need to personalize an Oracle form for one responsibility. But when i open through that responsibility, it is opening in read only format. When i open the same form through super user responsibility, then it is opening up-datable format. I tried different options like 'System Profiles- HR Query only to 'NO'', 'Removing Query-Only'. but still i can open it only in read only format where i need to make some fields up-datable.
    Any suggestions please?

    Hi All,
    I have an Standard E-Business Suite screen.
    This is the Transaction Overview Screen, which is in Read-Only Mode.
    The Value of the unit price is rounded on 2 decimal.
    We tried to change this with Perzonilization, but the the error is coming up
    "FRM-40602: Cannot insert into or update data in a view"
    What are we doing wrong.
    Thanks for your support.
    Best regards Marcel Snoeck

  • I would select a link from the drop down on the address bar but the page would not open. I would select it again but the page does not open. I could only reach website by selecting google on most visited list.

    After updating AVG anti-virus, I encountered a problem on Firefox. I would select a link from the drop down on the address bar but the page would not open after clicking on it. I would select it again, even double click, but the page does not open. I could only reach website by selecting google or yahoo from my dropdown on the most visited list and then click the website that I want to visit. I would like to do this in one step by just selecting a link from my history on the address bar and select a link instead of going to google and then writing the page I want to visit. What could be the problem? When going to the address bar to select a link to open, why does the site not open? Any help would be appreciated.

    Hi,
    Please check if this happens in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode.]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [http://support.mozilla.com/en-US/kb/Uninstalling+add-ons Uninstalling Add-ons]
    [http://kb.mozillazine.org/Uninstalling_toolbars Uninstalling Toolbars]

  • Error when opening XLSX file with Excel 2003 SP3, file does open but in read only mode with temporary name

    I am using Excel 2003 SP3 and have the Office 2007 compatibility pack installed.  When I open Office 2007 formatted Excel files (XSLX) directly in Windows Explorer, I receive the following error if I do not have Excel already opened:
    "Windows cannot find '<path to file>'.  Make sure you typed the name correctly, and then try again.  To search for a file, click the Start button, and then click Search."
    Even though I receive the error, the file does open; however, it opens in Read Only mode with a name such as "Xl0000024.xls".  The number seems to increment up each time it happens.
    Now here is the strange part.  If I have Excel already open and try to open the file in Windows Explorer, the file opens fine in Modify mode with no error and with the correct file name.
    I Googled the error I was getting and found KB211494.  It says I should uncheck the box in Options on the General tab that says "Ignore other applications", but this box is already unchecked in my case.  Any other ideas?  This is
    really frustrating as a small percentage of our company has upgraded to Office 2007 with the rest still on Office 2003.

    This may be a file association problem.  To solve that:
    In Windows 7:
    1. Right-click the file,
    2. Select "Open With" 
    select [Your Program Here]
    3. Check always use this program. 
    In Windows XP:
    1. Locate the file as you have described above
    2. Right click the file
    3. Select Open with from the pop-up menu
    4. Click Choose default program…
    5. Select Excel in the Recommended Programs box
    6. Check Always use the selected program to open this kind of file
    7. Click on OK.
    1.  Make Excel not available from Office 2007 listed under Programs and Features in Control Panel.
    2. Take a registry backup using the steps given here
    3. In the registry editor window expand HKEY_CLASSES_ROOT and navigate to .xls right and delete it.
    4. Exit Registry Editor
    5. Undo Step 1 to make Excel available.
    6.  Restart the computer and verify it the issue is fixed.
    If this answer solves your problem, please check Mark as Answered. If this answer helps, please click the Vote as Helpful button. Cheers, Shane Devenshire

Maybe you are looking for

  • Manual creation of planned order in REM

    Hi,  Can we manually create a planned order in repetitive manufacturing? I know that in case we run MRP , then planned order for finished is created with order type 'PE' due to which it cannot be converted to production order. I dont want to run MRP

  • FatalError FTP Adapter

    Hi all, I have an ESB process with an FTP adapter which I'm using to download files from the FTP to my local File System. I've been running this process with out problems but suddenly, today I'm not downloading all the files from the FTP. I found thi

  • Moving the cursor in a graph beyond the XY boundaries

    Hi All, I have graphs with many plots. Suppose one of my plots is  on the topmost portion of the graph. The user is able to scroll thsough the graph so that sometimes some of the plots go beyond the visible portion of the graph. I want to know how ca

  • MLS to MQC Conversion of srr-queueing bandwidth

    Hi, I am upgrading a Cisco 3750 to 3850 and running into issues with some MLS to MQC conversions. Would anyone know how I can convert these three command lines within an interface interface GigabitEthernetx/y/z  srr-queue bandwidth share 1 70 25 5  s

  • JUST GOT SLEEK

    It's absolutly amazing... so far my only problem is track in my 023 song library wont transfer.. says need codec, but its an mp3.. and whats with all the complaints about the touch pad :s makes it so ez..im on medium sensitivity, will go high after i