Bug in FGAC (11g)

Hello,
I perform this script under system user
create user test_schema
identified by 111;
alter user test_schema quota unlimited on users;
create table TEST_SCHEMA.TBL1
  ID        NUMBER not null,
  TBL2_ID NUMBER
alter table TEST_SCHEMA.TBL1
  add constraint TBL1_PK primary key (ID);
create index TEST_SCHEMA.TBL1_FK_I on TEST_SCHEMA.TBL1 (TBL2_ID);
create table TEST_SCHEMA.TBL2
  ID NUMBER not null
alter table TEST_SCHEMA.TBL2
  add constraint TBL2_PK primary key (ID);
insert into TEST_SCHEMA.tbl2(ID)
( select level from dual
connect by level < 30 );
insert into TEST_SCHEMA.tbl1(ID,TBL2_ID)
( select level, trunc(dbms_random.value(1,30)) from dual
connect by level < 8000 );
commit;
create function test_schema.vpd_getaccess_read(
  obj_schema in varchar2, -- схема таблицы
  obj_name in varchar2    -- имя таблицы
return varchar2
as
begin  
    return '(ID in (2,3))';
end vpd_getaccess_read;
begin
     DBMS_RLS.ADD_POLICY( OBJECT_SCHEMA   => 'TEST_SCHEMA',
                          OBJECT_NAME     =>  'TBL2',
                          POLICY_NAME     => 'READOF_TBL2',
                          FUNCTION_SCHEMA => 'TEST_SCHEMA',
                          POLICY_FUNCTION => 'VPD_GETACCESS_READ',
                          STATEMENT_TYPES => 'SELECT' );
     commit;
end;
select t1.*
/*     , t2.id*/
from TEST_SCHEMA.tbl1 t1,
     TEST_SCHEMA.tbl2 t2
where t1.tbl2_id = t2.id(+)Query returns 0 rows.
select t1.*
     , t2.id
from TEST_SCHEMA.tbl1 t1,
     TEST_SCHEMA.tbl2 t2
where t1.tbl2_id = t2.id(+)Query returns 7999 rows.
Oracle Database 11.2.0.1.0
Does anybody know solution?
Igor

Same in 10.2.0.4.0:
SQL> explain plan for
  2   select t1.*
  3       , t2.id
  4  from TEST_SCHEMA.tbl1 t1,
  5       TEST_SCHEMA.tbl2 t2
  6  where t1.tbl2_id = t2.id(+)
  7  /
Explained.
SQL> @?\rdbms\admin\utlxpls
PLAN_TABLE_OUTPUT
Plan hash value: 1646294756
| Id  | Operation             | Name    | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT      |         |  7999 |   304K|     9  (12)| 00:00:01 |
|*  1 |  HASH JOIN RIGHT OUTER|         |  7999 |   304K|     9  (12)| 00:00:01 |
|   2 |   VIEW                | TBL2    |     2 |    26 |     2   (0)| 00:00:01 |
|   3 |    INLIST ITERATOR    |         |       |       |            |          |
|*  4 |     INDEX UNIQUE SCAN | TBL2_PK |     2 |    26 |     2   (0)| 00:00:01 |
|   5 |   TABLE ACCESS FULL   | TBL1    |  7999 |   203K|     6   (0)| 00:00:01 |
PLAN_TABLE_OUTPUT
Predicate Information (identified by operation id):
   1 - access("T1"."TBL2_ID"="T2"."ID"(+))
   4 - access("ID"=2 OR "ID"=3)
Note
   - dynamic sampling used for this statement
22 rows selected.
SQL> explain plan for
  2  select count(*) from (
  3   select t1.*
  4       , t2.id
  5  from TEST_SCHEMA.tbl1 t1,
  6       TEST_SCHEMA.tbl2 t2
  7  where t1.tbl2_id = t2.id(+)
  8  )
  9  /
Explained.
SQL> @?\rdbms\admin\utlxpls
PLAN_TABLE_OUTPUT
Plan hash value: 3130026541
| Id  | Operation              | Name    | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT       |         |     1 |    26 |     9  (12)| 00:00:01 |
|   1 |  SORT AGGREGATE        |         |     1 |    26 |            |          |
|*  2 |   HASH JOIN RIGHT OUTER|         |  7999 |   203K|     9  (12)| 00:00:01 |
|   3 |    VIEW                | TBL2    |     2 |    26 |     2   (0)| 00:00:01 |
|   4 |     INLIST ITERATOR    |         |       |       |            |          |
|*  5 |      INDEX UNIQUE SCAN | TBL2_PK |     2 |    26 |     2   (0)| 00:00:01 |
PLAN_TABLE_OUTPUT
|   6 |    TABLE ACCESS FULL   | TBL1    |  7999 |   101K|     6   (0)| 00:00:01 |
Predicate Information (identified by operation id):
   2 - access("T1"."TBL2_ID"="T2"."ID"(+))
   5 - access("ID"=2 OR "ID"=3)
Note
PLAN_TABLE_OUTPUT
   - dynamic sampling used for this statement
23 rows selected.
SQL> explain plan for
  2  select t1.*
  3  /*     , t2.id*/
  4  from TEST_SCHEMA.tbl1 t1,
  5       TEST_SCHEMA.tbl2 t2
  6  where t1.tbl2_id = t2.id(+)
  7  /
Explained.
SQL> @?\rdbms\admin\utlxpls
PLAN_TABLE_OUTPUT
Plan hash value: 1646294756
| Id  | Operation             | Name    | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT      |         |  7999 |   304K|     9  (12)| 00:00:01 |
|*  1 |  HASH JOIN RIGHT OUTER|         |  7999 |   304K|     9  (12)| 00:00:01 |
|   2 |   VIEW                | TBL2    |     2 |    26 |     2   (0)| 00:00:01 |
|   3 |    INLIST ITERATOR    |         |       |       |            |          |
|*  4 |     INDEX UNIQUE SCAN | TBL2_PK |     2 |    26 |     2   (0)| 00:00:01 |
|   5 |   TABLE ACCESS FULL   | TBL1    |  7999 |   203K|     6   (0)| 00:00:01 |
PLAN_TABLE_OUTPUT
Predicate Information (identified by operation id):
   1 - access("T1"."TBL2_ID"="T2"."ID"(+))
   4 - access("ID"=2 OR "ID"=3)
Note
   - dynamic sampling used for this statement
22 rows selected.
SQL> So first difference is in FGA+outer join. In 10g policy produces predicate ID in (2,3) no matter what. In 11g it is smart enough to change ID in (2,3) with ("ID"(+)=2 OR "ID"(+)=3). However, when it realizes there is no t2 in select list it tries to optimize it with filter(NULL IS NOT NULL) which always retults in FALSE while it shoul not use any filters at all and just do full scan of t1 or at least apply filter(NULL IS NULL) which always retults in TRUE. So yes, it does sound like a bug and you should open a SR.
SY.

Similar Messages

  • Is this a bug in Jdeveloper 11g (11.1.2.1.0)

    Hello,
    I am using Jdeveloper 11g (11.1.2.1.0). I am using employee table. In my EO for HIREDATE attribute, I am choosing default value radio button SQL; entered valid SQL statement (Ex. Select Sysdate from dual). As soon as I save, the HIREDATE column becoming Transient. It is not allowing the attribute to Persistent. Is this a Bug.
    Thanks
    Edited by: Surendranath Kumar on Apr 18, 2012 10:27 AM
    Edited by: Surendranath Kumar on Apr 20, 2012 12:44 PM

    It is confirmed as bug. See link Bug in Jdeveloper 11g (11.1.2.1.0)

  • Minor display bug in JDev 11g "View Annotation" with Subversion

    Hi all,
    A very minor visual display issue with the "View Annotations" feature of JDev 11g when using a Subversion repository. To reproduce, simply follow these steps:
    1). Open up any source file and right-click in the editor; select Versioning -> View Annotation. The annotations will be shown, and if you right-click again, you will see a check-mark next to the "View Annotation" menu item.
    2). Open another source file. Annotations are not shown. Right-click in the editor; you will see that "View Annotation" menu item displays a check-mark (even though annotations are not shown). Select Versioning -> View Annotation. Annotations are now shown, but you will see the check-mark is no longer displayed.
    To summarize my analysis; it appears that "View Annotation" was intended to be a global setting (as indicated by the check-mark), but is actually implemented on a file-by-file basis. Obviously a very minor display bug not affecting functionality, but a bug nonetheless.
    John

    John,
    I filed a bug
    thanks
    Frank

  • Bug in JDev 11g 11.1.1.0.2

    In the context of the JavaBean XML Model "Overview" editor i JDev 11g 11.1.1.0.2:
    When I add a validator and specify an appropriate text resource for the error message, JDev deletes my carefully authored description comment from the property resource bundle.

    Hi, I am using Oracle supplied HR schema, table EMPLOYEES. I created EO on EMPLOYEES table. All the attributes show correctly as Persistent first.
    Under Default Value section, I selected Radio Button "SQL" and entered valid Sql statement, Hit save button. I moved to next attribute, then I see. The previous attribute for which I entered Sql statement as default value, turned to Transient. But this is a Persistent attribute. It is not allowing me to change it back to Persistent.
    Hope the above steps will help to reproduce the bug in your system.

  • Major bugs in oracle 11g 11.1.0.7??

    Hii All,
    We are planning to upgrade to 11g currently we are using
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for Solaris: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
               Now we are planning to upgrade to version 11.1.0.7,but heard that it contains many bugs.And our DBA suggest us version 11.2.0.1.0 where all the bugs in the earlier release of 11g got fixed. Is it true?
    These links show that there are some bugs in 11.1.0.7
    http://nilesh-joshi.blogspot.com/2010/06/oracle-111070-bug.html
    http://mikerault.blogspot.com/2009/03/more-fun-with-oracle11g-11107.html
    1)Can any one brief the bugs in the version 11.1.0.7 ???
    2)Let me know whether are all those bugs got fixed in the version 11.2.0.1.0??
    Is this bug oracle 11g needs group by - why? fixed in 11gR2???
    Regards
    Raghu.

    Bottom line - you'll be lucky if you never run into a bug in any release.
    I'd always be hesitant to go with any x.1 release including 11.2.0.1.
    Bear in mind that you're probably not upgrading today but in a few months time.
    11.2.0.2 is available on Linux
    Use Metalink to identify any bugs in any specific feature or release you're interested.
    Doc Id 738538.1 - 11.1.0.7 Patch Set - Availability and Known Issues
    Doc Id - 880707.1 - 11.2.0.1 Base Release - Availability and Known Issues
    Doc ID 1179474.1 - Known issues specific to 11.2.0.2
    Doc ID 1178583.1 - Bugs fixed in the 11.2.0.2 Patch Set

  • A bug in ADF 11g?

    Hi all,
    It appears like a bug in 11g:
    1. when using regex with javascript: replacing all spaces from a string: replace(/\s/g, ''); it fails in 11g and works in 10g; (and if I use this: replace(/ /g, ''), it removes all spaces in 11g, but I don't think this is correct way to do it?); And trimming the spaces: replace(/^\s+|\s+$/, '') ; still works in 11g and 10g;
    2. whenever there is '*\d*' in the regex, it seems fails to work? I have to replace it with [0-9] or [0123456789]??
    3. one more: expecting to use this regex */^[A-Za-z]/* to start with letter, it fails too now, I can start with numbers?
    Thanks
    Shawn
    Edited by: shawn_abc on May 7, 2012 10:00 AM
    Edited by: shawn_abc on May 7, 2012 11:00 AM
    Edited by: shawn_abc on May 7, 2012 11:01 AM

    Hi,
    I tried the following in JDeveloper 11.1.1.6 and it works fine
    <f:view>
        <af:document id="d1">
        <af:resource type="javascript">
          function rmWhiteSpace(event) {
              var txtField = AdfPage.PAGE.findComponentByAbsoluteId("it1");
              var changeString = txtField.getValue();
              str = changeString.replace(/\s+/g, '');
              txtField.setValue(str);
        </af:resource>
          <af:form id="f1">
            <af:panelStretchLayout id="psl1">
              <f:facet name="center">
                <af:panelGroupLayout layout="scroll"
                                     xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
                                     id="pgl1">
                  <af:inputText label="Label 1" id="it1"
                                binding="#{ClearBlankBean.inputTxt}"
                                value="#{ClearBlankBean.value}"
                                clientComponent="true"/>
                  <af:commandButton text="Invoke Script" id="cb1"
                                    partialSubmit="true">
                    <af:clientListener method="rmWhiteSpace" type="action"/>
                  </af:commandButton>
                </af:panelGroupLayout>
                <!-- id="af_one_column_stretched"   -->
              </f:facet>
            </af:panelStretchLayout>
          </af:form>
        </af:document>
      </f:view>No Bug !!!!
    Frank
    Edited by: Frank Nimphius on May 15, 2012 9:56 AM

  • Bugs in OBIEE 11g

    Hi,
    I have been working intesively with OBIEE 11g (11.1.1.6.2) last months, but unfortunately I have discovered lots of bugs in different areas. Also when working in Answers creating analysis/reports the user interface is not very good, e.g. to delete a filter I have to aim for the red delete cross since it is hidden. Going from one pivot table to another table/graph I have to go to the compound layout first instead of as in 10g be able to go directly to other tables/graphs. I could have written a long list with issues like this and yes I have added service requests to Oracle, but sometimes it feels like I am using half of the day adding or answering SR.
    I am actually a big fan of OBIEE and have been working with it for many years as chief architect, but have to say I am a bit disappointed by 11g as it appears - although there are some very good functionality compared to 10g as well. I was hoping for quicker and better improvements, but new versions have fixed some bugs and added other all the time.
    Any other views or experiences with 11g? Just curious.

    Hi,
    Yes. me too faced so many issues..
    1) Object level securiry - (custom application role having issue with grading dashboard/catalog access issue also
    latency in obiee11g application role)
    2) Replace null as 0 in obiee11g pivot table view
    How to replace null as 0 in  obiee11g pivot table view?
    3) After enabling custom SSL - the job manager unable to connect (issue with job manager SSL config)
    4) Performance issue - (IE8 Browser issue, analysis)
    5) BI Composer - date filter not working (raised SR and confirm as bug its fix 11.1.1.7.0)
    6) Some times unable to delete users/roles/group from EM (after deleting users from physical file system-jan-data.xml file then its ok, raised SR confirm as bug ...team it may fix feature realse.
    7) obiee11g with weblogic10.3.6 version-->EM--> mapping users/groups to the application role its requires to add one by one..(weblogic 10.3.5 version ok) {i.e: it's unable select multiple users/group at a time}
    8) some times crashing obiee11g server issue
    9) obiee11.1.1.6.0 RPD --> after importing table from DB ..the data type are changed ..its require to change it manually.
    .....etc
    Thanks
    Deva
    Edited by: Devarasu on Oct 12, 2012 7:32 PM

  • WS-I Tools - Major Bug in JDeveloper 11g

    Hello,
    I've tried tro run the WS-I analyzer from JDeveloper (11.1.1 - 2 - 3 ) but have the following error:
    An error occcured when writing the temporaryWS-I Analyzer configuration file
    After spending couple of hours and finally gave up, and I believe this is a big BUGGGGGGGGGGGGGG in 11g JDeveloper , no log no clue.
    I tried the same in 10.1.3.4 and it works just fine, I followed the following instructions, for both versions.
    http://www.oracle.com/technetwork/developer-tools/jdev/wsi-howto-091316.html
    I am surprised about this bug of Jdeveloper ...................If any Ace, or Director has any clue ??? let us know please.
    Thanks

    Hi, I am using Oracle supplied HR schema, table EMPLOYEES. I created EO on EMPLOYEES table. All the attributes show correctly as Persistent first.
    Under Default Value section, I selected Radio Button "SQL" and entered valid Sql statement, Hit save button. I moved to next attribute, then I see. The previous attribute for which I entered Sql statement as default value, turned to Transient. But this is a Persistent attribute. It is not allowing me to change it back to Persistent.
    Hope the above steps will help to reproduce the bug in your system.

  • Jdeveloper IDE bug with Soa 11g PS1 ejb adapter with uri and jndiName

    Hi,
    When you use the EJB adapter as a reference in Soa suite 11g PS1 and you provide the jndiname then jdev put its wrong in the binding.ejb and use the uri attribute instead of jndiName
    <reference name="EmployeeReferenceService"
    ui:wsdlLocation="HrEmployeeEJBBeanWS.wsdl">
    <interface.wsdl interface="/nl/whitehorses/hr/ejb/services/#wsdl.interface(HrEmployeeEJBBeanWS)"/>
    <binding.ejb javaInterface="nl.whitehorses.hr.ejb.services.HrEmployeeEJB"
    jarLocation="ejbSdoHr.jar"
    uri="AdfEjbHr-model-HrEmployeeEJB#nl.whitehorses.hr.ejb.services.HrEmployeeEJB"/>
    </reference>
    This is the right one
    <reference name="EmployeeReferenceService"
    ui:wsdlLocation="HrEmployeeEJBBeanWS.wsdl">
    <interface.wsdl interface="/nl/whitehorses/hr/ejb/services/#wsdl.interface(HrEmployeeEJBBeanWS)"/>
    <binding.ejb javaInterface="nl.whitehorses.hr.ejb.services.HrEmployeeEJB"
    jarLocation="ejbSdoHr.jar"
    jndiName="AdfEjbHr-model-HrEmployeeEJB#nl.whitehorses.hr.ejb.services.HrEmployeeEJB"/>
    </reference>
    if you dont correct this in the composite xml you got errors in Soa suite and the ejb adapter does not work
    thanks Edwin

    Hi,
    my best recommendation is to work with customer supports in this testcase.
    Frank

  • Bug in JDev 11g: clicking "Run" button won't run active file

    Hi everybody.
    If you start a new Application in Oracle JDeveloper 11g and start creating Java classes, at some point you're bound to create a main() function in one of them to ensure everything is working correctly, even if that class is not your application entry point.
    The problem is that, once you run it the first time, JDev 11g will always attempt to run that original class instead of the file you're currently working on.
    More info:
    - This only happens with the "Run" and "Debug" toolbar buttons and menu items, the keyboard shortcuts (Ctrl-F11 and such) work as expected.
    - The checkbox labeled "Attempt to Run Active File Before Default" in the Launch Settings is selected (The "Default Run Target" textbox is empty).
    I downloaded the JDev 11g version that came WITHOUT a JDK and I'm running Java version 1.6.0_07 on Windows XP.
    Thanks in advance for any help.

    More info on the subject:
    Oracle JDev 11g seems to be unable to detect that there is an active file at all! This is evidenced by the fact that all of the External Tools are inactive at all times.
    Is it JDev's fault, or is it the installed JDK's?

  • 2 bugs in JDBC 11g doc?

    Hi
    It think JDBC doc contains 2 bugs :
    Example 4-1 Code Snippet for Accessing SYS.ANYTYPE Type
    // check if it's a transient type
    if(td.isTransientType()) // read isTransient()
    and use getTypeCodeName in System.out.println(td.getTypeName())
    Example 4-4 Accessing an Instance of ANYDATA from the Database
    if(td.getTypeCode() == OracleType.TYPECODE_OBJECT) // read td.getInternalTypeCode()== td.TYPECODE_OBJECT

    Hi,
    Yes. me too faced so many issues..
    1) Object level securiry - (custom application role having issue with grading dashboard/catalog access issue also
    latency in obiee11g application role)
    2) Replace null as 0 in obiee11g pivot table view
    How to replace null as 0 in  obiee11g pivot table view?
    3) After enabling custom SSL - the job manager unable to connect (issue with job manager SSL config)
    4) Performance issue - (IE8 Browser issue, analysis)
    5) BI Composer - date filter not working (raised SR and confirm as bug its fix 11.1.1.7.0)
    6) Some times unable to delete users/roles/group from EM (after deleting users from physical file system-jan-data.xml file then its ok, raised SR confirm as bug ...team it may fix feature realse.
    7) obiee11g with weblogic10.3.6 version-->EM--> mapping users/groups to the application role its requires to add one by one..(weblogic 10.3.5 version ok) {i.e: it's unable select multiple users/group at a time}
    8) some times crashing obiee11g server issue
    9) obiee11.1.1.6.0 RPD --> after importing table from DB ..the data type are changed ..its require to change it manually.
    .....etc
    Thanks
    Deva
    Edited by: Devarasu on Oct 12, 2012 7:32 PM

  • BUG!: JDeveloper 11g Tutorial code is incomplete.

    I am attempting the complete the JDeveloper 11g Tutorial from the Fusion Developer's Guide for Oracle Application Development Framework
    After adding all the latest jars available from the ADF Installer to the StoreFrontModule I am left with 10 errors all of with seem to be the result of missing methods (especially findByAltKey) from both Oracle packages and the tutorials code itself. The errors and the .java files affected are listed below. Please let me know if you need more information or if you have a solution to these compilation errors.
    Project: C:\J2EE_Apps\FOD\StoreFrontModule\StoreFrontService\StoreFrontService.jpr
    C:\J2EE_Apps\FOD\StoreFrontModule\StoreFrontService\src\oracle\fodemo\storefront\account\queries\CustomerPaymentOptionVORowImpl.java
    Error(9,8): class oracle.jbo.server.ViewAccessorDef not found
    Error(468,22): does not override any method in its superclass
    Error(475,22): method createViewAccessorRS(java.lang.String) does not override any method in its superclass
    Error(476,27): method createViewAccessorRS(java.lang.String) not found in class oracle.jbo.server.ViewRowImpl
    C:\J2EE_Apps\FOD\StoreFrontModule\StoreFrontService\src\oracle\fodemo\storefront\store\queries\PersonsVOImpl.java
    Error(25,39): method findByAltKey(java.lang.String, oracle.jbo.Key, int, boolean) not found in class oracle.fodemo.storefront.store.queries.PersonsVOImpl
    C:\J2EE_Apps\FOD\StoreFrontModule\StoreFrontService\src\oracle\fodemo\storefront\store\service\StoreServiceAMImpl.java
    Error(422,28): method findByAltKey(java.lang.String, oracle.jbo.Key, int, boolean) not found in class oracle.fodemo.storefront.store.queries.OrderItemsVOImpl
    Error(471,48): method findByAltKey(java.lang.String, oracle.jbo.Key, int, boolean) not found in class oracle.jbo.server.ViewObjectImpl
    Error(526,44): method findByAltKey(java.lang.String, oracle.jbo.Key, int, boolean) not found in class oracle.fodemo.storefront.store.queries.PersonsVOImpl
    C:\J2EE_Apps\FOD\StoreFrontModule\StoreFrontService\src\oracle\fodemo\storefront\store\queries\ShoppingCartTransientVOImpl.java
    Error(52,33): method add(oracle.jbo.domain.Number) not found in class oracle.jbo.domain.Number
    C:\J2EE_Apps\FOD\StoreFrontModule\StoreFrontService\src\oracle\fodemo\storefront\store\queries\OrdersVOImpl.java
    Error(39,33): method findByAltKey(java.lang.String, oracle.jbo.Key, int, boolean) not found in class oracle.fodemo.storefront.store.queries.OrdersVOImpl
    Thanks,
    Shawn Pressley
    Edited by: user575216 on Dec 16, 2008 5:18 PM

    Go into project properties - technology scope and add ADF BC.

  • Bug in latest 11g JDBC driver

    We have found a problem when using the latest 11g JDBC driver ("11.1.0.7.0-Production") and connecting to a 10g database. If the includeSynonyms=true property is set when opening the connection, then calling DatabaseMetaData.getColumns() will not return any columns for views. Tables and synonyms work, but not views. Without the includeSynonyms property, columns are returned correctly for tables and views, but obviously not for synonyms.
    The previous 11g driver ("11.1.0.6.0-Production+") did not have this problem.
    Our testing was done using ojdbc5.jar with Java 1.5, and a 10.2.0.1.0 database. I have not tested if the same problem exists when connecting to a 11g database, or when using ojdbc6.jar/Java 1.6.
    Is this a known issue? Is there a workaround other than reverting to the older driver?
    Thanks.
    Steve

    Are you sure that DatabaseMetaData#getColumns is actually working? AFAIK, this is not implemented feature in Oracle JDBC driver.

  • Known bugs in Oracle 11g

    Please suggest a list/link of the known bugs present in OBIEE11g.

    Check this or you may google it.
    http://obieeelegant.blogspot.com/2012/10/bugs-fixed-in-111165-patch-set.html
    https://forums.oracle.com/forums/ann.jspa?annID=939
    Mark if helps
    http://cool-bi.com
    Edited by: Srini VEERAVALLI on May 16, 2013 8:48 AM

  • Bug JSP JDeveloper 11g

    A simple JSP does not run in JDeveloper 11g. Generates the following error:
    oracle.oc4j.util.SystemLog log
    SEVERE: Server start failed processing configuration
    java.security.AccessControlException: access denied ( CredentialAccessPermission credstoressp.credstore.default.systemuser read)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
         at java.security.AccessController.checkPermission(AccessController.java:427)
         at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$3.checkPermission(JpsAuth.java:256)
         at oracle.security.jps.util.JpsAuth$Diagnostic.checkPermission(JpsAuth.java:180)
         at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$6.checkPermission(JpsAuth.java:280)
         at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:315)
         at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:338)
         at oracle.security.jps.internal.credstore.util.CsfUtil.checkPermission(CsfUtil.java:527)
         at oracle.security.jps.internal.credstore.ssp.SspCredentialStore.getCredential(SspCredentialStore.java:412)
         at oracle.security.jps.fmw.util.JpsFmwUtil.findSystemUser(JpsFmwUtil.java:218)
         at oracle.security.jps.fmw.JpsUserManager.init(JpsUserManager.java:235)
         at oracle.security.jps.fmw.JpsUserManager.<init>(JpsUserManager.java:247)
         at oracle.security.jps.fmw.JpsUserManagerFactory$JpsUserManagerFactoryI.create(JpsUserManagerFactory.java:252)
         at com.evermind.server.deployment.UserManagerConfig$JAZN.construct(UserManagerConfig.java:635)
         at com.evermind.server.deployment.UserManagerConfig.delegatee(UserManagerConfig.java:253)
         at com.evermind.security.IndirectUserManager.getAdminUser(IndirectUserManager.java:126)
         at com.evermind.security.IndirectUserManager.getAdminUser(IndirectUserManager.java:126)
         at com.evermind.server.XMLApplicationServerConfig.setPassword(XMLApplicationServerConfig.java:3157)
         at com.evermind.server.XMLApplicationServerConfig.<init>(XMLApplicationServerConfig.java:244)
         at com.evermind.server.ApplicationServer.createConfig(ApplicationServer.java:648)
         at oracle.oc4j.server.ServerFactory$Worker.prepareConfig(ApplicationServerFactory.java:201)
         at oracle.oc4j.server.ServerFactory$Worker.start(ApplicationServerFactory.java:220)
         at oracle.oc4j.server.ServerFactory$Worker.run(ApplicationServerFactory.java:235)
         at java.lang.Thread.run(Thread.java:595)
    May 9, 2008 10:30:40 AM oracle.oc4j.util.SystemLog logNoStack
    SEVERE: Server exiting: ApplicationServer entered state EXITING

    Hi,
    with me the error does happen with TP4.
    The error generated:
    28-mei-2008 14:55:28 oracle.oc4j.util.SystemLog log
    SEVERE: Server start failed processing configuration
    java.security.AccessControlException: access denied ( CredentialAccessPermission credstoressp.credstore.default.systemuser read)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
         at java.security.AccessController.checkPermission(AccessController.java:427)
         at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$3.checkPermission(JpsAuth.java:256)
         at oracle.security.jps.util.JpsAuth$Diagnostic.checkPermission(JpsAuth.java:180)
         at oracle.security.jps.util.JpsAuth$AuthorizationMechanism$6.checkPermission(JpsAuth.java:280)
         at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:315)
         at oracle.security.jps.util.JpsAuth.checkPermission(JpsAuth.java:338)
         at oracle.security.jps.internal.credstore.util.CsfUtil.checkPermission(CsfUtil.java:527)
         at oracle.security.jps.internal.credstore.ssp.SspCredentialStore.getCredential(SspCredentialStore.java:420)
         at oracle.security.jps.fmw.util.JpsFmwUtil.makeJpsSystemUser(JpsFmwUtil.java:221)
         at oracle.security.jps.fmw.JpsUserManager.initSystemUser(JpsUserManager.java:270)
         at oracle.security.jps.fmw.JpsUserManager.init(JpsUserManager.java:238)
         at oracle.security.jps.fmw.JpsUserManager.<init>(JpsUserManager.java:250)
         at oracle.security.jps.fmw.JpsUserManagerFactory$JpsUserManagerFactoryI.create(JpsUserManagerFactory.java:257)
         at com.evermind.server.deployment.UserManagerConfig$JAZN.construct(UserManagerConfig.java:635)
         at com.evermind.server.deployment.UserManagerConfig.delegatee(UserManagerConfig.java:253)
         at com.evermind.security.IndirectUserManager.getAdminUser(IndirectUserManager.java:126)
         at com.evermind.security.IndirectUserManager.getAdminUser(IndirectUserManager.java:126)
         at com.evermind.server.XMLApplicationServerConfig.setPassword(XMLApplicationServerConfig.java:3170)
         at com.evermind.server.XMLApplicationServerConfig.<init>(XMLApplicationServerConfig.java:246)
         at com.evermind.server.ApplicationServer.createConfig(ApplicationServer.java:661)
         at oracle.oc4j.server.ServerFactory$Worker.prepareConfig(ApplicationServerFactory.java:225)
         at oracle.oc4j.server.ServerFactory$Worker.start(ApplicationServerFactory.java:244)
         at oracle.oc4j.server.ServerFactory$Worker.run(ApplicationServerFactory.java:259)
         at java.lang.Thread.run(Thread.java:595)
    28-mei-2008 14:55:28 oracle.oc4j.util.SystemLog logNoStack
    SEVERE: Server exiting: ApplicationServer entered state FAILED_IN_CONFIG
    The steps I took:
    1. 'Installed' JDeveloper TP4 (base) in folder d:\JDev, jdk1.5 on C:\Program Files\Java
    2 tried to create application but got a different error constantly resulting in a 404 page and message that I should put debug_mode on true, and 'current-workspace-app is in failed state as initialization failed'
    3. deleted JDeveloper and extracted the zip again, in folder d:\JDeveloper
    4. I've created a fusion web application (ADF), opened faces-config, place a home.jspx on there and created the .jspx. I didn't put any content on the page.
    Does anyone see what I'm doing wrong of forgot to do?
    Thanks!
    Regards,
    Diana

Maybe you are looking for

  • Frozen Mouse and Kernel Panic

    Hi, I bought the latest macbook with the basic configuration (128gb etc.). I started the machine for the first time and updated to the latest version of Yosemite 10.10.3. After the updating process the mouse cursor got stuck around every minute and a

  • After upgrade of OLTP, is there a report to tell me what needs replicated?

    Hello,   We have just upgraded our OLTP system to ECC 6.0. Various steps of our process chains in BI are abending saying we need to replicate the datasource. Without replicating ALL datasources and activating ALL transfer rules, is there a way to kno

  • Issue with attachment file name

    Hi All, This is about an issue with attachment file name: we have a scenario wherein we have payload with attachments ...(attachments can be any doc ,pdf) , problem is main document is comming with messageid.sap.com and thats normal but attachments a

  • What is the mainboard productnumber on Satellite Pro M30?

    Hello, I need the Productnumber from the mainboard for my Satellite. Modell Nr. : PSM35E-000NU-GR Thanks.

  • How to add tape drive in hyper V operating system

    how to add tape drive in hyper V operating system tape drive may be to scsci or USB port. how to add pls suggest