Lbacsys.lbac_events

I work with Forms 6i and 10g database and I try to insert a picture into a BLOB column. When I try this I get error:
TABLE OR VIEW DOES NOT EXISTS and NO DATA FOUND
and it says something about LBACSYS.LBAC_EVENTS.
What can I do about it?
Thanks in advance
Edited by: user542401 on 09.09.2009 10:01
Edited by: user542401 on 10.09.2009 06:51

오라클 버그 인것 같습니다.
메타링크에 나와 있군요....
Fix
- Download and install the patch for bug 3099699.
- If the original catpatch.sql has been run on instance then run $ORACLE_HOME/rdbms/admin/catnools.sql to deinstall the Oracle Label Security option
- Then rerun the new $ORACLE_HOME/rdbms/admin/catpatch.sql which replaces the original catpatch.sql.
이렇게 조치하기 힘드시면 아래와 같이 해 보십시오...
shutdown immediate;
startup migrate;
alter view lbacsys.lbac$all_table_policies compile;
alter package lbacsys.lbac_events compile body;
shutdown immediate;
startup;
수고하세요..

Similar Messages

  • LBACSYS related query consuming 30% of db time

    HI,
    Below query has been consuming more than 30% of db time for past few days.
    BEGIN LBACSYS.lbac_events.logon(dbms_standard.login_user); END;
    This is related to Oracle Label security.
    Can someone suggest any workaround for this,

    Pl do not post duplicates - related to migration of db from sql server to oracle 11 g
    Continue the discussion in your original thread
    The error message is explicitly clear
    ora :01440 : can not insert null into migrlog (id column)
    Your process is trying to insert a NULL value into the ID column, which presumably cannot be NULL

  • Loadjava Problems !!

    Hi All,
    I'm experiencing some problems trying to load the SSOHash.class file to the schema that I created just like the same in the Install guide...
    The error String follows :
    E:\Projetos\Portal_SSO\lib\packages\oracle\security\sso>loadjava -user partner/[email protected]:1521:o817
    -thin -verbose -resolve -force SSOHash.class
    initialization complete
    loading : oracle/security/sso/SSOHash
    creating : oracle/security/sso/SSOHash
    Error while creating class oracle/security/sso/SSOHash
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01405: fetched column value is NULL
    ORA-06512: at "LBACSYS.LBAC_EVENTS", line 29
    ORA-06512: at line 2
    resolver :
    resolving: oracle/security/sso/SSOHash
    Error while resolving class oracle/security/sso/SSOHash
    ORA-04043: object oracle/security/sso/SSOHash does not exist
    loadjava: 2 errors
    Could Anyone help me ?? I have no idea of what could it be !!
    P.S: Please, reply to my e-mail because I'm not part of this list !!!!
    Thanks in Advance !!
    Ilan

    Looks like either your database is not java enabled or database is not configured properly.
    You may check your database if it is Java enabled
    sqlplus sys/change_on_install
    select object_name from all_objects where object_name like 'JAVA%';
    You must see various java objects name if your database is Java enabled.
    (Result for 8.1.7.0.0 database query )
    OBJECT_NAME
    JAVA$CLASS$MD5$TABLE
    JAVA$HTTP$DEPLOYMENT$DIGEST$
    JAVA$HTTP$LOG$
    JAVA$HTTP$REALM$GROUP$
    JAVA$HTTP$REALM$ID$
    JAVA$HTTP$REALM$MAPPING$
    JAVA$HTTP$REALM$POLICY$
    JAVA$HTTP$REALM$PRINCIPAL$
    JAVA$HTTP$REALM$P_SEQ$
    JAVA$POLICY$
    JAVA$POLICY$SEQUENCE$
    JAVA$POLICY$SHARED$00000002
    JAVA$POLICY$SHARED$00000004
    JAVA$POLICY$SHARED$00000005
    JAVA$POLICY$SHARED$TABLE
    JAVA$RMJVM$AUX
    JAVA$RMJVM$AUX2
    JAVA$RMJVM$AUXI
    JAVA$RMJVM$AUXI2
    JAVASNM
    JAVASNM$
    JAVA_AUTONOMOUS_TRANSACTION
    JAVA_AUTONOMOUS_TRANSACTION
    JAVA_XA
    JAVA_XA
    JAVASNM
    JAVA_AUTONOMOUS_TRANSACTION
    JAVA_XA
    JAVA$HTTP$DEPLOYMENT$DIGEST$
    JAVA$HTTP$LOG$
    JAVA$HTTP$REALM$GROUP$
    JAVA$HTTP$REALM$ID$
    JAVA$HTTP$REALM$MAPPING$
    JAVA$HTTP$REALM$POLICY$
    JAVA$HTTP$REALM$PRINCIPAL$
    JAVA$HTTP$REALM$P_SEQ$
    JAVA$CLASS$MD5$TABLE
    JAVA$CLASS$MD5$TABLE
    38 rows selected.
    null

  • DBMS_XMLGEN not working for me

    I'm just starting with this, so I may be missing something.
    I have 9.2.0.1.0 installed on Linux Redhat.
    I'm trying to create an XML document by querying a table
    as described in the Oracle 9i XML Database Developer's Guide, pg 10-28.
    I'm querying a very simple table, and it seems to start, but then it creates locks and that is it. I don't get errors, it just doesn't work. Below is what I do/get:
    create table xml_test_clob (result clob);
    declare
    v_result clob;
    l_ctx dbms_xmlgen.ctxHandle;
    l_sql varchar2(400);
    begin
    l_sql := 'select * from scott.emp';
    l_ctx := dbms_xmlgen.newContext(l_sql);
    v_result := dbms_xmlgen.getXml(l_ctx);
    insert into xml_test_clob VALUES(v_result);
    dbms_output.put_line('testing');
    dbms_xmlgen.closecontext(l_ctx);
    exception
    when others then
    dbms_output.put_line('error: '||to_char(sqlcode));
    end;
    testing
    PL/SQL procedure successfully completed.
    SQL> select * from xml_test_clob;
    RESULT
    <?xml version="1.0"?>
    <ROWSET>
    <ROW>
    <EMPNO>7369</EMPNO>
    <ENAME>SMITH</ENAM
    SQL>
    It seems like it just stops, and then I have locks which I have to clear in order to truncate the table to try again.
    I'm just in a 'normal' schema. Do I have to do something else to make this work?
    Thanks,
    Tim

    Mark,
    Yes I did run catpatch.sql.
    when trying to compile dbms_xmlgen, I get:
    SQL> alter package dbms_xmlgen compile body;
    alter package dbms_xmlgen compile body
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-04045: errors during recompilation/revalidation of LBACSYS.LBAC_EVENTS
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 2
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 2
    SQL>
    I did a search on metalink and found that LBACSYS is
    'Label Security'. I don't recall selecting this to be
    installed when I first installed the db.
    I found a post on metalink that showed a script, catnools.sql that removes Label Security. Do you think
    I should run it?
    Is there some way to regenerate dbms_xmlgen (rather than
    recompile?)

  • Database startup issue

    Dear all
    when i am going to startup the database i am getting this
    below mentioned issue
    database is mounted for your information.
    Unix process pid: 5402, image: [email protected] (TNS V1-V3)
    *** SERVICE NAME:(SYS$USERS) 2010-05-23 23:04:28.988
    *** SESSION ID:(159.3) 2010-05-23 23:04:28.988
    Error in executing triggers on database startup
    *** 2010-05-23 23:04:28.988
    ksedmp: internal or fatal error
    ORA-00604: error occurred at recursive SQL level 1
    ORA-06521: PL/SQL: Error mapping function
    ORA-06512: at "LBACSYS.LBAC_EVENTS", line 34
    ORA-06512: at line 2
    *** 2010-05-23 23:04:48.636
    *** 2010-05-23 23:04:48.636 60679 kcrr.c
    ARCH: Archival disabled due to shutdown: 1089
    *** 2010-05-23 23:04:49.638 60679 kcrr.c
    ARCH: Archival disabled due to shutdown: 1089
    pls. let me reason for the issue.
    Tks/regs
    Sunrise~

    Error in executing triggers on database startup
    *** 2010-05-23 23:04:28.988
    ksedmp: internal or fatal error
    ORA-00604: error occurred at recursive SQL level 1
    ORA-06521: PL/SQL: Error mapping function
    ORA-06512: at "LBACSYS.LBAC_EVENTS", line 34
    ORA-06512: at line 2
    *** 2010-05-23 23:04:48.636
    *** 2010-05-23 23:04:48.636 60679 kcrr.c
    ARCH: Archival disabled due to shutdown: 1089
    It appears that a startup trigger has a bug.
    01089, 00000, "immediate shutdown in progress - no operations are permitted"
    // *Cause:  The SHUTDOWN IMMEDIATE command was used to shut down
    //        a running ORACLE instance, so your operations have been
    //        terminated.
    // *Action: Wait for the instance to be restarted, or contact your DBA.

  • Bibean tutorial olap connection gives ora 942

    Hi,
    I'm working my way through the bibean tutorial.
    I have not made much progress.
    I'm stuck at the point where I create the BI Designer via wizard.
    I'm seeing this error:
    oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo
    oracle.express.ExpressServerExceptionError class: OLAPI
    Server error descriptions:
    INI: ORA-00942: table or view does not exist
    in function: TxsRdbSelectStatement:execute(), Generic at TxsOqConnection::getDefaultDatabase
         at oracle.olapi.metadata.BaseMetadataProvider.<init>(BaseMetadataProvider.java:68)
         at oracle.olapi.metadata.mdm.MdmMetadataProvider.<init>(MdmMetadataProvider.java:127)
         at oracle.express.olapi.data.full.ExpressDataProvider.getDefaultMetadataProvider(ExpressDataProvider.java:912)
         at oracle.dss.metadataManager.server.drivers.mdm._92.MDMMetadataDriverImpl_92.getMdmMetadataProvider(MDMMetadataDriverImpl_92.java:1134)
         at oracle.dss.metadataManager.server.drivers.mdm._92.MDMMetadataDriverImpl_92.attach(MDMMetadataDriverImpl_92.java:811)
         at oracle.dss.metadataManager.server.drivers.mdm.MDMMetadataDriverImpl.attach(MDMMetadataDriverImpl.java:133)
         at oracle.dss.metadataManager.server.MetadataManagerImpl.buildObjectModel(MetadataManagerImpl.java:1085)
         at oracle.dss.metadataManager.server.MetadataManagerImpl.attach(MetadataManagerImpl.java:962)
         at oracle.dss.metadataManager.client.MetadataManager.attach(MetadataManager.java:866)
         at oracle.dss.metadataManager.client.MetadataManager.attach(MetadataManager.java:792)
         at oracle.dss.addins.designer.OLAPSource.test(OLAPSource.java:280)
         at oracle.dss.addins.wizard.connection.OlapTestPanel.testConnectionImpl(OlapTestPanel.java:49)
         at oracle.dss.addins.wizard.connection.TestConnectionPanel$2.construct(TestConnectionPanel.java:180)
         at oracle.jdeveloper.common.SwingWorker$2.run(SwingWorker.java:168)
         at java.lang.Thread.run(Thread.java:536)
    oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo
    I used 'oemapp console' to look at my OLAP install.
    It shows cubes and dimensions owned by BIBDEMO so I see some hope.
    Here is info about my current setup:
    Linux localhost 2.4.18-14 #1 Wed Sep 4 13:35:50 EDT 2002 i686 i686 i386 GNU/Linux
    Oracle9i Enterprise Edition Release 9.2.0.3.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.3.0 - Production
    Jdeveloper 9.0.3.1 build 1107
    java version "1.4.1_03"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1_03-b02)
    Java HotSpot(TM) Client VM (build 1.4.1_03-b02, mixed mode)
    Any of you have any clues for me?
    Is it possible for me to connect to OLAP via sqlplus or pl/sql
    so I can eliminate Jdeveloper, JDBC, and Java as suspects?
    -atm

    hiAgain,
    I made progress today by installing 9.2.0.1 general purpose DB and then upgrading it to 9.2.0.3.
    Along the way I bumped into a bug with the DB:
    20:47:04 SQL> alter user bibcat identified by bibcat default tablespace users;
    alter user bibcat identified by bibcat default tablespace users
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-04045: errors during recompilation/revalidation of LBACSYS.LBAC_EVENTS
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 2
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 2
    google told me this:
    shutdown immediate;
    startup migrate;
    alter view lbacsys.lbac$all_table_policies compile;
    alter package lbacsys.lbac_events compile body;
    shutdown immediate;
    startup;
    Above commands ran okay for me.
    then,
    I ran rdbms/admin/utlrp.sql to recompile everything invalid.
    results of this looked good too:
    SELECT comp_name, status, substr(version,1,10) as version from dba_registry;
    -atm

  • 리눅스 9204로 패취하고 에러가 발생합니다.

    ORA-00604: error occurred at recursive SQL level 1
    ORA-04045: errors during recompilation/revalidation of LBACSYS.LBAC_EVENTS
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 2
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 2

    오라클 버그 인것 같습니다.
    메타링크에 나와 있군요....
    Fix
    - Download and install the patch for bug 3099699.
    - If the original catpatch.sql has been run on instance then run $ORACLE_HOME/rdbms/admin/catnools.sql to deinstall the Oracle Label Security option
    - Then rerun the new $ORACLE_HOME/rdbms/admin/catpatch.sql which replaces the original catpatch.sql.
    이렇게 조치하기 힘드시면 아래와 같이 해 보십시오...
    shutdown immediate;
    startup migrate;
    alter view lbacsys.lbac$all_table_policies compile;
    alter package lbacsys.lbac_events compile body;
    shutdown immediate;
    startup;
    수고하세요..

  • OLS integration w/OID

    Hi,
    I'm not sure if I'm in the right discussion forum, but I have a question regarding Oracle Label Security integration with Oracle Internet Directory.
    I tried setting it up and got a lot of errors. I basically want to uninstall and then re-install to start over fresh.
    I've uninstalled by:
    1) running catnools.sql
    2) removing Label Security using the Oracle Universal Installer deinstall option.
    When I reinstalled, I tried to integrate with OID again and got errors such as the following:
    Error updating provisioning profile -ERROR: Provisions Profile Already Exists..
    The Provisioning Profile for the Application could not be created.
    LDAP error code 20 uniquemember attribute has duplicate value
    It doesn't seem as if it uninstalled properly because there are still traces of everything in OID.
    How can I do a clean removal so that I can reinstall and start over again?
    I've been trying to follow this documentation and ran into problems at Step: http://www.oracle.com/technology/deploy/security/database-security/howtos/ols_oid-how-to.html
    When I tried to run 'execute sa_policy_admin.policy_subscribe('ACCESS_LOCATIONS'), I got the
    error:
    ERROR:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-04045: errors during recompilation/revalidation of LBACSYS.LBAC_EVENTS
    ORA-04064: not executed, invalidated
    ORA-04064: not executed, invalidated package body "LBACSYS.LBAC_EVENTS"
    ORA-06508: PL/SQL: could not find program unit being called:
    "LBACSYS.LBAC_EVENTS"
    ORA-06512: at line 2
    ORA-06508: PL/SQL: could not find program unit being called:
    "LBACSYS.LBAC_EVENTS"
    ORA-06512: at line 2
    When I check the LBACSYS procedures, packages, etc.. some are not valid. When I try to recompile, I get the same error.
    So, everything was messed up completely which was why I wanted to uninstall.
    Thanks,
    Nora

    hi, the technology that allows 3rd party directories to integrate with OID is called the OID "Directory Integration Platform" (DIP).
    Documentation on the OID DIP can be found at:
    http://download-west.oracle.com/otndoc/oracle9i/901_doc/network.901/a90151/pt_odip.htm#435787
    Also, Oracle consulting services are available to support directory integration work. Please email me if you are interested in getting more information about Oracle Consulting.

  • Disable Constraint in LBACSYS schema

    How wise would it be to disable a constraint in the LBACSYS schema, on a table that has the long name, short name of a rowlabel on it? (We need to create various rowlabels with the same long name, and it violates a constraint. )

    my guess is that the "xsd:key" constraint needs to be in the "transactions" element, not the "transaction" element.

  • LBACSYS.LBAC$LOGON

    Hi i runed a sql script which was in 9.0.1 name is catproc.sql in rdbms/admin
    so now if i m trying to connnect as scott/tiger its giving me this error.
    ORA-04045: errors during recompilation/revalidation of LBACSYS.LBAC$LOGON
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 2
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 2before this it was connecting successfully .Is there is any way to revery back all the changes which came through this script.
    As i m also not able to run Utlrd.sql too.
    thankx for ur puting ur valueable time.
    omkar Singh

    user3895367 wrote:
    . Due to an equipment upgrade, we moved the database and its software from one Solaris 10 server to another by shutting all oracle processes down and creating tar files of all software and database directories including the files in /var/opt/oracle. This way of moving database software is not really supported by Oracle. Yes you can copy software directories but you need to run additional steps as documented in http://download.oracle.com/docs/cd/E11882_01/em.112/e12255/oui6_cloning.htm#OUICG294.
    This could explain why you have errors when running Oracle Universal Installer (OUI).
    I recommend that you contact Oracle Support for this issue.

  • Label Security - Can see all rows as LBACSYS but none as table owner

    Question: I've inherited a 10.2.2 database that contains a copy of a database that was upgraded from 8i.
    All of the tables that were managed within Secure Access are now managed by OLS. The new tables now have two columns, one for SECMGR and one for OLS. The label was copied from SECMGR to OLS. The labels were recreated in the OLS container.
    When I connect as the table owner and query a row count; I get zero. When I connect as lbacsys and query a rowcount, I get all rows.
    Just for test purposes; I've gone into Policy manager and granted full access, profile_access, all compartments and groups and still the table owner cannot see any rows on the table. I've also disabled the policy for that table and still no rows.
    Does anyone have any idea why the table owner cannot see the data?
    Thanks in advance!

    [URGENT]
    I'm beginning to get closer to the problem; yet still no solution. To narrow down the problem I decided to create a new container/policy and a subset of the compartments, groups, and labels. (The existing container has over 500 groups).
    After creating them and applying them to a test table. I've noticed that when I set a label in the table using the char_to_label function: example
    update test_label_table
    set sec_label = char_to_label('LO:COMP1')
    where name = 'Low';
    I then queried the row as lbacsys and retrieved a different level and compartment and a group that I didn't create: results
    select name,label_to_char(sec_label)
    from test_label_table
    where name = 'Low'';
    NAME LABEL_TO_CHAR
    Low TS:REG:US
    How is this possible? What could I possibly have done wrong to get this output?
    Thanks in advance!

  • LBACSYS account not present on 11.2.0.3

    I installed OLS , VPD and Advanced Security ( its installed default anyway) and I verified using runInstaller that they are installed.
    But when checking the user presence, i dont see the account, and furthermore,
    SQL> SELECT VALUE FROM V$OPTION WHERE PARAMETER = 'Oracle Label Security';
    VALUE
    FALSE
    SO I am not sure what is failing here? any ideas are appreciated
    thanks

    Are you sure you have installed OLB?
    My case:
    select * from v$option where parameter = 'Oracle Label Security';
    PARAMETER VALUE
    Oracle Label Security FALSE

  • ORA-01092: ORACLE instance terminated. Disconnection forced ORA-00942: table or view does not exist on 12C RAC

    Hi Geeks,
    I have encountered an issue while starting up my database on 12c RAC.
    Till mount it goes fine but when i attempt to open it throws me an error.
    Total System Global Area 1.5400E+10 bytes
    Fixed Size                  4737560 bytes
    Variable Size            2952791528 bytes
    Database Buffers         1.2415E+10 bytes
    Redo Buffers               26857472 bytes
    Database mounted.
    SQL> alter database open;
    alter database open
    ERROR at line 1:
    ORA-01092: ORACLE instance terminated. Disconnection forced
    ORA-00942: table or view does not exist
    Process ID: 11338068
    Session ID: 1429 Serial number: 3
    Here is the trace file output...
    ORACLE_HOME = /oracle_home/app/orahome
    System name:    AIX
    Node name:      INS1
    Release:        1
    Version:        7
    Machine:        00C8CCA74C00
    Instance name: INST1
    Redo thread mounted by this instance: 1
    Oracle process number: 7
    Unix process pid: 20381876, image: oracle@ins1 (TNS V1-V3)
    *** 2014-11-27 22:49:20.892
    *** SESSION ID:(197.5) 2014-11-27 22:49:20.892
    *** CLIENT ID:() 2014-11-27 22:49:20.892
    *** SERVICE NAME:() 2014-11-27 22:49:20.892
    *** MODULE NAME:(sqlplus@ins1 (TNS V1-V3)) 2014-11-27 22:49:20.892
    *** ACTION NAME:() 2014-11-27 22:49:20.892
    2014-11-27 22:49:20.889716 : Start recovery for domain=0, valid=0, flags=0x4
    *** 2014-11-27 22:49:24.580
    Successfully allocated 32 recovery slaves
    Using 3 overflow buffers per recovery slave
    *** 2014-11-27 22:49:24.740
    Thread 1 checkpoint: logseq 15, block 2, scn 3510749
      cache-low rba: logseq 15, block 3
        on-disk rba: logseq 15, block 72, scn 3510824
      start recovery at logseq 15, block 3, scn 0
    *** 2014-11-27 22:49:24.981
    Started resilvering redo thread 1 seq 15 blocks 72-73
    *** 2014-11-27 22:49:24.994
    Completed resilvering redo thread 1 seq 15
    *** 2014-11-27 22:49:24.994
    Started writing zeroblks thread 1 seq 15 blocks 74-81
    *** 2014-11-27 22:49:24.994
    Completed writing zeroblks thread 1 seq 15
    ==== Redo read statistics for thread 1 ====
    Total physical reads (from disk and memory): 4096Kb
    -- Redo read_disk statistics --
    Read rate (ASYNC): 35Kb in 0.25s => 0.14 Mb/sec
    Longest record: 0Kb, moves: 0/104 (0%)
    Longest LWN: 2Kb, moves: 0/33 (0%), moved: 0Mb
    Last redo scn: 0x0000.0035922b (3510827)
    ----- Recovery Hash Table Statistics ---------
    Hash table buckets = 262144
    Longest hash chain = 1
    Average hash chain = 25/25 = 1.0
    Max compares per lookup = 1
    Avg compares per lookup = 151/176 = 0.9
    *** 2014-11-27 22:49:25.007
    KCRA: start recovery claims for 25 data blocks
    *** 2014-11-27 22:49:25.039
    KCRA: blocks processed = 25/25, claimed = 25, eliminated = 0
    *** 2014-11-27 22:49:25.054
    Recovery of Online Redo Log: Thread 1 Group 6 Seq 15 Reading mem 0
    *** 2014-11-27 22:49:25.060
    Completed redo application of 0.02MB
    *** 2014-11-27 22:49:25.235
    Completed recovery checkpoint
    ----- Recovery Hash Table Statistics ---------
    Hash table buckets = 262144
    Longest hash chain = 1
    Average hash chain = 25/25 = 1.0
    Max compares per lookup = 1
    Avg compares per lookup = 176/176 = 1.0
    Recovery sets nab of thread 1 seq 15 to 74 with 8 zeroblks
    *** 2014-11-27 22:49:26.000
    2014-11-27 22:49:26.000433 : Validate domain 0
    2014-11-27 22:49:26.001348 : Validated domain 0, flags = 0x0
    *** 2014-11-27 22:49:28.315
    Count of ofsmtab$: 0 entries
    *** 2014-11-27 22:49:28.732
    ORA-00942: table or view does not exist
    ORA-00942: table or view does not exist
    *** 2014-11-27 22:49:28.738
    USER (ospid: 20381876): terminating the instance due to error 942

    In my case the issue has fixed by executing the following..
    grant SELECT on SYS.USER$ to XDB;
    grant SELECT on SYS.USER$ to CTXSYS;
    grant SELECT on SYS.USER$ to DVSYS;
    grant SELECT on SYS.USER$ to LBACSYS;
    grant SELECT on SYS.USER$ to APEX_040200;
    grant SELECT on SYS.USER$ to DV_SECANALYST; 
    Refer the above screen shot...

  • High CPU usage running select from dba_ts_quotas

    We recently installed grid agent on a DEV box and have seen out CPU spike like crazy at times. I have 10 instances running on this box (cringe), they are at different versions from 10 -11G. The agent is at 10.2.0.4.
    I looked up the query that's eating my CPU and got the following:
    /* OracleOEM */
    SELECT 'table_space_quotas',
    USERNAME,
    TABLESPACE_NAME
    FROM dba_ts_quotas
    WHERE (max_bytes = -1
    OR max_blocks = -1)
    AND username NOT IN ('SYS','SYSTEM','SYSMAN','CTXSYS',
    'MDSYS','ORDSYS','ORDPLUGINS','OLAPSYS',
    'DBSNMP','MGMT_VIEW','OUTLN','ANONYMOUS',
    'DMSYS','EXFSYS','LBACSYS','SI_INFORMTN_SCHEMA',
    'SYSMAN','WKPROXY','WKSYS','WK_TEST',
    'WMSYS','XDB','TRACESVR','SCOTT',
    'ADAMS','BLAKE','CLARK','JONES',
    'HR')
    AND ROWNUM <= DECODE(:1,'-1',2147483647,
    :1)
    ORDER BY USERNAME
    I've done some research and followed the suggestions:
    There was a suggestion to set the following parameter: set optimizer_secure_view_merging=false
    Disable Security Policty to monitor table spaces
    Nothing seems to help.
    Has anyone else experienced this?

    I know its been a while, but though it worthwhile posting this for others viewing this post
    Try the following from Metalink note #395064.1
    Symptoms
    The following query that is fired from Grid Control once in a day takes a lot of time and it affects the entire performance of Grid Control:
    SELECT 'table_space_quotas', username, tablespace_name
    FROM dba_ts_quotas
    WHERE (max_bytes = -1
    OR max_blocks = -1)
    AND NOT username IN ('SYS', 'SYSTEM', 'SYSMAN', 'CTXSYS', 'MDSYS',
    'ORDSYS', 'ORDPLUGINS', 'OLAPSYS', 'DBSNMP', 'MGMT_VIEW', 'OUTLN',
    'ANONYMOUS', 'DMSYS', 'EXFSYS', 'LBACSYS', 'SI_INFORMTN_SCHEMA',
    'SYSMAN', 'WKPROXY', 'WKSYS', 'WK_TEST', 'WMSYS', 'XDB', 'TRACESVR',
    'SCOTT', 'ADAMS', 'BLAKE', 'CLARK', 'JONES', 'HR')
    AND rownum <= decode(:1, '-1', 2147483647, :1)
    ORDER BY username
    Cause
    The security policy run against the 10.2.0.2 database which ensures database users are allocated a limited tablespace quota is creating the problem.
    Solution
    - From the Grid Control home page click on Targets > Databases > select 10.2.0.2 database.
    - Click on 'Metric and Policy Settings' and select 'Policies' tab.
    - Now search for the Policy Rule 'Unlimited Tablespace Quota' and click on Schedule link.
    - The default collection is every 24 hours. You need to disable Collection Schedule and click
    continue button which will take you back to the previous page.
    - Also select 'Disabled' from the drop down box available near the Policy Evaluation and click continue. After this, the security policy which ensures database users are allocated a limited tablespace quota will not run and the statement won't be executed.

  • Oracle 9.0.1.1 Spatial and Label

    -- Author: Shawn Bisgrove
    -- Oracle Version: 9.0.1.1 Personal
    -- Operating System Windows 2000
    -- I have just started evaluating Oracle for use on a future
    project and have decided to recommend
    -- using both the Label and Spatial components.
    -- Sorry about the length of this post. I did make sure that
    the example was simple but complete.
    -- I have run into what I believe is a pretty severe bug. It
    may not be, but if it is it hinders
    -- the use of Oracle Spatial and Oracle Label Security with R-
    TREE and Q-TREE indexing together.
    -- Please tell me that I am doing something wrong. I will
    cross post in the Spatial section.
    -- Variations on this example can be derived from the base
    example and will probably exhibit the
    -- same behavior.
    -- This example requires a database DARS configured with Label
    Security
    -- User: system Password: system
    -- remove any residual policy information
    connect admin/admin@dars;
    execute sa_sysdba.drop_policy('DARS_RESOURCES');
    connect system/system@dars;
    drop user shawn cascade;
    drop user dars cascade;
    drop user admin cascade;
    create user admin identified by admin;
    grant connect, resource, select_catalog_role to admin;
    grant connect to shawn identified by shawn;
    grant connect to dars identified by dars;
    grant resource to dars;
    connect dars/dars@dars;
    CREATE TABLE DATASET (COVERAGE MDSYS.SDO_GEOMETRY,
              INTERNALIDENTIFIER NUMBER(6) PRIMARY KEY);
    create sequence DATASET_INTERNALIDENTIFIER_SEQ;
    delete from USER_SDO_GEOM_METADATA;
    INSERT INTO USER_SDO_GEOM_METADATA values
    ('dataset', 'coverage', mdsys.SDO_dim_array
    (MDSYS.SDO_DIM_ELEMENT('X',-90,90,.001) ,
         MDSYS.SDO_DIM_ELEMENT('Y',-180,180,.001)), null);
    -- OCCURS IN BOTH R-TREE and Q-TREE (for example using R-TREE)
    CREATE INDEX DATASET_SPATIAL_IDX ON dars.DATASET(COVERAGE)
    INDEXTYPE IS MDSYS.SPATIAL_INDEX;
    --SELECT SDO_TUNE.QUALITY_DEGRADATION
    ('DARS', 'DATASET_SPATIAL_IDX') FROM DUAL;
    --SELECT SDO_TUNE.RTREE_QUALITY('DARS', 'DATASET_SPATIAL_IDX')
    FROM DUAL;
    -- UNCOMMENT FOR Q-TREE EXAMPLE
    --CREATE INDEX DATASET_SPATIAL_IDX ON dars.DATASET(COVERAGE)
    INDEXTYPE IS MDSYS.SPATIAL_INDEX PARAMETERS('SDO_LEVEL = 8');
    --SELECT SDO_TUNE.ESTIMATE_TILING_LEVEL
    ('dars.dataset', 'coverage', 8) from dual;
    grant select, insert, update, delete on DATASET to public;
    grant select, alter on DATASET_INTERNALIDENTIFIER_SEQ to public;
    connect lbacsys/lbacsys@dars
    GRANT EXECUTE ON SA_COMPONENTS TO admin WITH GRANT OPTION;
    GRANT EXECUTE ON SA_USER_ADMIN TO admin WITH GRANT OPTION;
    GRANT EXECUTE ON sa_user_admin TO admin WITH GRANT OPTION;
    GRANT EXECUTE ON sa_label_admin TO admin WITH GRANT OPTION;
    GRANT EXECUTE ON sa_policy_admin TO admin WITH GRANT OPTION;
    GRANT EXECUTE ON sa_audit_admin TO admin WITH GRANT OPTION;
    GRANT LBAC_DBA TO admin;
    GRANT EXECUTE ON SA_SYSDBA TO admin;
    GRANT EXECUTE ON to_lbac_data_label TO admin;
    connect admin/admin@dars;
    execute SA_SYSDBA.CREATE_POLICY('DARS_RESOURCES', 'ACL');
    execute SA_COMPONENTS.CREATE_LEVEL('DARS_RESOURCES',
    5000, 'EMP', 'Employee');
    execute SA_COMPONENTS.CREATE_GROUP('DARS_RESOURCES',
    500, 'MGR', 'Manager', NULL);
    execute SA_COMPONENTS.CREATE_GROUP('DARS_RESOURCES',
    600, 'WKR1', 'Worker', 'MGR');
    execute SA_COMPONENTS.CREATE_GROUP('DARS_RESOURCES',
    700, 'WKR2', 'Worker 2', 'MGR');
    execute SA_LABEL_ADMIN.CREATE_LABEL('DARS_RESOURCES',
    3000, 'EMP::MGR');
    execute SA_LABEL_ADMIN.CREATE_LABEL('DARS_RESOURCES',
    3100, 'EMP::WKR1');
    execute SA_LABEL_ADMIN.CREATE_LABEL('DARS_RESOURCES',
    3200, 'EMP::WKR2');
    execute SA_POLICY_ADMIN.APPLY_TABLE_POLICY
    ('DARS_RESOURCES', 'DARS', 'DATASET', 'HIDE, READ_CONTROL,
    LABEL_DEFAULT', NULL, NULL);
    --execute SA_POLICY_ADMIN.REMOVE_TABLE_POLICY
    ('DARS_RESOURCES', 'DARS', 'DATASET');
    -- also occurs if given more than one label and then a default
    label such as 'EMP::WKR1 ,WKR2', 'EMP::WKR1');
    execute SA_USER_ADMIN.SET_USER_LABELS
    ('DARS_RESOURCES', 'SHAWN', 'EMP::WKR1');
    execute SA_USER_ADMIN.SET_USER_LABELS
    ('DARS_RESOURCES', 'DARS', 'EMP::MGR');
    connect shawn/shawn@dars;
    insert into dars.dataset values (MDSYS.SDO_GEOMETRY(2003,
    NULL, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1,1003,3),
    MDSYS.SDO_ORDINATE_ARRAY(33.422, -113.4822, 33.5601, -
    113.2995) ), dars.DATASET_INTERNALIDENTIFIER_SEQ.nextval );
    commit;
    select count(*) from dars.dataset;
    connect dars/dars@dars;
    insert into dars.dataset values (MDSYS.SDO_GEOMETRY(2003,
    NULL, NULL, MDSYS.SDO_ELEM_INFO_ARRAY(1,1003,3),
    MDSYS.SDO_ORDINATE_ARRAY(33.422, -113.4822, 33.5601, -
    113.2995) ), dars.DATASET_INTERNALIDENTIFIER_SEQ.nextval );
    commit;
    select count(*) from dars.dataset;
    prompt first execute as user dars
    connect dars/dars@dars
    -- causes a bug, first hint is label access control and rtree
    screwing up??
    select internalidentifier from dars.dataset where
    mdsys.sdo_relate(coverage,
         mdsys.SDO_GEOMETRY(2003, NULL, NULL,
    mdsys.SDO_ELEM_INFO_ARRAY(1, 1003, 3),
         mdsys.SDO_ORDINATE_ARRAY(33, -114, 34, -112)),
         'mask = INSIDE querytype = WINDOW')= 'TRUE' order by
    internalidentifier;
    connect dars/dars@dars
    -- does not cause same problem because we are not using the
    index
    select internalidentifier from dars.dataset where
    sdo_geom.relate( coverage, 'INSIDE',
         mdsys.SDO_GEOMETRY(2003, NULL, NULL,
    mdsys.SDO_ELEM_INFO_ARRAY(1, 1003, 3),
         mdsys.SDO_ORDINATE_ARRAY(33, -114, 34, -112)),
    .005 ) = 'INSIDE';
    prompt first execute as user shawn
    connect shawn/shawn@dars
    -- causes a bug, first hint is label access control and rtree
    screwing up??
    -- ERROR at line 1:
    -- ORA-03113: end-of-file on communication channel
    -- if q-tree is being used:
    select internalidentifier from dars.dataset where
    mdsys.sdo_relate(coverage,
         mdsys.SDO_GEOMETRY(2003, NULL, NULL,
    mdsys.SDO_ELEM_INFO_ARRAY(1, 1003, 3),
         mdsys.SDO_ORDINATE_ARRAY(33, -114, 34, -112)),
         'mask = INSIDE querytype = WINDOW')= 'TRUE' order by
    internalidentifier;
    connect shawn/shawn@dars
    -- does not cause same problem because we are not using the
    index
    select internalidentifier from dars.dataset where
    sdo_geom.relate( coverage, 'INSIDE',
         mdsys.SDO_GEOMETRY(2003, NULL, NULL,
    mdsys.SDO_ELEM_INFO_ARRAY(1, 1003, 3),
         mdsys.SDO_ORDINATE_ARRAY(33, -114, 34, -112)),
    .005 ) = 'INSIDE';
    connect dars/dars@dars
    prompt break the index at this point
    -- causes the index to be broken:
    -- ERROR at line 1:
    -- ORA-29858: error occurred in the execution of ODCIINDEXALTER
    routine
    -- ORA-29400: data cartridge error
    -- ORA-01031: insufficient privileges
    -- ORA-13249: internal error in Spatial index: [mdidxrbd]
    -- ORA-13249: Error in Spatial index: index build failed
    -- ORA-13249: Stmt-Execute Failure: SELECT count(*) from
    DARS.DATASET
    -- ORA-29400: data cartridge error
    -- ORA-01031: insufficient privileges
    -- ORA-06512: at "MDSYS.SDO_INDEX_METHOD_9I", line 232
    -- ORA-06512: at line 1
    alter index dars.dataset_spatial_idx rebuild;

    Here is the last entry in the darsCORE.LOG file:
    Oracle9i Enterprise Edition Release 9.0.1.1.1 - Production
    Process Id: 0x000002e4 Thread Id : 0x00000674 Time : Mon Dec
    17 06:27:19
    Excp. Code: 0xc0000005 Excp. Type: ACCESS_VIO Flags:
    0x00000000
    ------------------- Memory Map of process ----------------
    Start Addr-End Addr Type Size ModuleName
    0x00400000-0x01b5cfff Image 0024498176 C:\ORACLE\ORA90
    \BIN\ORACLE.EXE
    0x05790000-0x05882fff Image 0000995328 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9ORACLE_AURORA_RDBMS.DLL
    0x05890000-0x05978fff Image 0000954368 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9JAVA_LANG.DLL
    0x05980000-0x05b59fff Image 0001941504 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9JAVA_UTIL.DLL
    0x05b60000-0x05bb4fff Image 0000348160 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9ORACLE_AURORA_VM.DLL
    0x05bc0000-0x05c6ffff Image 0000720896 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9JAVA_SECURITY.DLL
    0x05c70000-0x05c83fff Image 0000081920 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9JAVA_LANG_REFLECT.DLL
    0x05c90000-0x06035fff Image 0003825664 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9ORACLE_GSS_UTIL.DLL
    0x06040000-0x0619cfff Image 0001429504 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9JAVA_IO.DLL
    0x061a0000-0x066bdfff Image 0005365760 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9SUN_IO.DLL
    0x066c0000-0x066d4fff Image 0000086016 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9JAVA_LANG_REF.DLL
    0x066e0000-0x066e6fff Image 0000028672 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9SUN_SECURITY_ACTION.DLL
    0x06700000-0x0670afff Image 0000045056 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9ORACLE_AURORA_MEMORYMANAGER.DLL
    0x06710000-0x067b0fff Image 0000659456 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9SUN_MISC.DLL
    0x067c0000-0x06a47fff Image 0002654208 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9ORACLE_SQL.DLL
    0x06a50000-0x06a87fff Image 0000229376 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9JAVA_SQL.DLL
    0x06a90000-0x06b70fff Image 0000921600 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9SUN_SECURITY_PROVIDER.DLL
    0x06b80000-0x06d72fff Image 0002043904 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9ORACLE_JDBC_DRIVER.DLL
    0x06d80000-0x06d89fff Image 0000040960 C:\ORACLE\ORA90
    \BIN\COREJAVA.DLL
    0x06d90000-0x06da1fff Image 0000073728 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9JAVA_MATH.DLL
    0x06db0000-0x06e3ffff Image 0000589824 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9ORACLE_AURORA_RDBMS_SECURITY.DLL
    0x06e40000-0x06e54fff Image 0000086016 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9ORACLE_AURORA_REALM.DLL
    0x06e60000-0x06ea0fff Image 0000266240 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9ORACLE_JDBC_KPRB.DLL
    0x06eb0000-0x06f13fff Image 0000409600 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9ORACLE_JDBC_DBACCESS.DLL
    0x070d0000-0x0712bfff Image 0000376832 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9ORACLE_AURORA_NET.DLL
    0x07150000-0x071e7fff Image 0000622592 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9JAVA_NET.DLL
    0x07200000-0x07204fff Image 0000020480 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9ORACLE_AURORA_SECURITY.DLL
    0x07240000-0x07245fff Image 0000024576 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9JAVA_SECURITY_ACL.DLL
    0x07280000-0x072acfff Image 0000184320 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9JAVAX_NAMING_DIRECTORY.DLL
    0x072c0000-0x07316fff Image 0000356352 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9JAVAX_NAMING.DLL
    0x07320000-0x07498fff Image 0001544192 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9ORACLE_AURORA_UTIL.DLL
    0x074b0000-0x074d5fff Image 0000155648 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9COM_SUN_NAMING_INTERNAL.DLL
    0x074e0000-0x07557fff Image 0000491520 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9SUN_SECURITY_UTIL.DLL
    0x07560000-0x07576fff Image 0000094208 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9ORACLE_AURORA_RDBMS_URL_JSERVER.DLL
    0x07580000-0x075acfff Image 0000184320 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9JAVAX_NAMING_SPI.DLL
    0x07a90000-0x07be1fff Image 0001384448 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9JAVA_TEXT.DLL
    0x08140000-0x081a1fff Image 0000401408 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9SQLJ_RUNTIME_REF.DLL
    0x081d0000-0x081fffff Image 0000196608 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9SQLJ_RUNTIME.DLL
    0x08200000-0x08206fff Image 0000028672 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9SQLJ_FRAMEWORK_IDE_AURORA_RDBMS.DLL
    0x08210000-0x08244fff Image 0000217088 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9ORACLE_JDBC.DLL
    0x08250000-0x08255fff Image 0000024576 C:\ORACLE\ORA90
    \JAVAVM\ADMIN\ORAJOX9ORACLE_JDBC_INTERNAL.DLL
    0x10000000-0x1028efff Image 0002682880 C:\ORACLE\ORA90
    \BIN\ORAJOX9.DLL
    0x60000000-0x60031fff Image 0000204800 C:\ORACLE\ORA90
    \BIN\ORAWWG9.DLL
    0x60300000-0x60492fff Image 0001650688 C:\ORACLE\ORA90
    \BIN\ORAGENERIC9.DLL
    0x60500000-0x6057dfff Image 0000516096 C:\ORACLE\ORA90
    \BIN\ORACOMMON9.DLL
    0x60600000-0x60753fff Image 0001392640 C:\ORACLE\ORA90
    \BIN\ORACLIENT9.DLL
    0x60800000-0x60805fff Image 0000024576 C:\ORACLE\ORA90
    \BIN\ORAVSN9.DLL
    0x60810000-0x60815fff Image 0000024576 C:\ORACLE\ORA90
    \BIN\ORAWTC9.DLL
    0x60820000-0x60825fff Image 0000024576 C:\ORACLE\ORA90
    \BIN\ORAODM9.DLL
    0x60a00000-0x60c03fff Image 0002113536 C:\ORACLE\ORA90
    \BIN\ORAPLS9.DLL
    0x60e00000-0x60ed8fff Image 0000888832 C:\ORACLE\ORA90
    \BIN\ORAPLP9.DLL
    0x610a0000-0x61136fff Image 0000618496 C:\ORACLE\ORA90
    \BIN\ORACORE9.DLL
    0x612a0000-0x61307fff Image 0000425984 C:\ORACLE\ORA90
    \BIN\ORANLS9.DLL
    0x61350000-0x6135ffff Image 0000065536 C:\ORACLE\ORA90
    \BIN\ORASNLS9.DLL
    0x613a0000-0x613aefff Image 0000061440 C:\ORACLE\ORA90
    \BIN\ORAUNLS9.DLL
    0x61400000-0x6142bfff Image 0000180224 C:\ORACLE\ORA90
    \BIN\ORANL9.DLL
    0x61480000-0x61538fff Image 0000757760 C:\ORACLE\ORA90
    \BIN\ORAN9.DLL
    0x615a0000-0x61627fff Image 0000557056 C:\ORACLE\ORA90
    \BIN\ORANNZSBB9.DLL
    0x616a0000-0x616a5fff Image 0000024576 C:\ORACLE\ORA90
    \BIN\ORANCDS9.DLL
    0x616b0000-0x616c2fff Image 0000077824 C:\ORACLE\ORA90
    \BIN\ORANCRYPT9.DLL
    0x61730000-0x61766fff Image 0000225280 C:\ORACLE\ORA90
    \BIN\ORANRO9.DLL
    0x617c0000-0x617c5fff Image 0000024576 C:\ORACLE\ORA90
    \BIN\ORANHOST9.DLL
    0x617d0000-0x617d5fff Image 0000024576 C:\ORACLE\ORA90
    \BIN\ORANONAME9.DLL
    0x61820000-0x61825fff Image 0000024576 C:\ORACLE\ORA90
    \BIN\ORANTNS9.DLL
    0x61850000-0x61857fff Image 0000032768 C:\ORACLE\ORA90
    \BIN\ORANBEQ9.DLL
    0x61890000-0x6189dfff Image 0000057344 C:\ORACLE\ORA90
    \BIN\ORANNTS9.DLL
    0x61910000-0x6191bfff Image 0000049152 C:\ORACLE\ORA90
    \BIN\ORANTCP9.DLL
    0x61960000-0x6196efff Image 0000061440 C:\ORACLE\ORA90
    \BIN\ORANLDAP9.DLL
    0x61af0000-0x61af9fff Image 0000040960 C:\ORACLE\ORA90
    \BIN\ORANSGR9.DLL
    0x62000000-0x62020fff Image 0000135168 C:\ORACLE\ORA90
    \BIN\ORALDAPCLNT9.DLL
    0x62300000-0x6233ffff Image 0000262144 C:\ORACLE\ORA90
    \BIN\ORATRACE9.DLL
    0x62500000-0x62506fff Image 0000028672 C:\ORACLE\ORA90
    \BIN\ORASLAX9.DLL
    0x62600000-0x62673fff Image 0000475136 C:\ORACLE\ORA90
    \BIN\ORASQL9.DLL
    0x62fc0000-0x63040fff Image 0000528384 C:\ORACLE\ORA90
    \BIN\ORAXML9.DLL
    0x64000000-0x64006fff Image 0000028672 C:\ORACLE\ORA90
    \BIN\ORANMS.DLL
    0x64020000-0x6402ffff Image 0000065536 C:\ORACLE\ORA90
    \BIN\ORANMSP.DLL
    0x74fd0000-0x74fe0fff Image 0000069632 C:\WINDOWS\SYSTEM32
    \MSAFD.DLL
    0x75010000-0x75016fff Image 0000028672 C:\WINDOWS\SYSTEM32
    \WSHTCPIP.DLL
    0x75020000-0x75027fff Image 0000032768 C:\WINDOWS\SYSTEM32
    \WS2HELP.DLL
    0x75030000-0x75043fff Image 0000081920 C:\WINDOWS\SYSTEM32
    \WS2_32.DLL
    0x75050000-0x75057fff Image 0000032768 C:\WINDOWS\SYSTEM32
    \WSOCK32.DLL
    0x75150000-0x7515efff Image 0000061440 C:\WINDOWS\SYSTEM32
    \SAMLIB.DLL
    0x75170000-0x751befff Image 0000323584 C:\WINDOWS\SYSTEM32
    \NETAPI32.DLL
    0x751c0000-0x751c5fff Image 0000024576 C:\WINDOWS\SYSTEM32
    \NETRAP.DLL
    0x75500000-0x75503fff Image 0000016384 C:\WINDOWS\SYSTEM32
    \SECURITY.DLL
    0x77570000-0x7759ffff Image 0000196608 C:\WINDOWS\SYSTEM32
    \WINMM.DLL
    0x777e0000-0x777e7fff Image 0000032768 C:\WINDOWS\SYSTEM32
    \WINRNR.DLL
    0x777f0000-0x777f4fff Image 0000020480 C:\WINDOWS\SYSTEM32
    \RASADHLP.DLL
    0x77830000-0x7783dfff Image 0000057344 C:\WINDOWS\SYSTEM32
    \RTUTILS.DLL
    0x77840000-0x7784bfff Image 0000049152 C:\WINDOWS\SYSTEM32
    \RNR20.DLL
    0x77950000-0x77978fff Image 0000167936 C:\WINDOWS\SYSTEM32
    \WLDAP32.DLL
    0x77980000-0x779a3fff Image 0000147456 C:\WINDOWS\SYSTEM32
    \DNSAPI.DLL
    0x779b0000-0x77a44fff Image 0000610304 C:\WINDOWS\SYSTEM32
    \OLEAUT32.DLL
    0x77a50000-0x77b44fff Image 0001003520 C:\WINDOWS\SYSTEM32
    \OLE32.DLL
    0x77be0000-0x77beefff Image 0000061440 C:\WINDOWS\SYSTEM32
    \SECUR32.DLL
    0x77d40000-0x77daefff Image 0000454656 C:\WINDOWS\SYSTEM32
    \RPCRT4.DLL
    0x77db0000-0x77e09fff Image 0000368640 C:\WINDOWS\SYSTEM32
    \ADVAPI32.DLL
    0x77e10000-0x77e74fff Image 0000413696 C:\WINDOWS\SYSTEM32
    \USER32.DLL
    0x77e80000-0x77f35fff Image 0000745472 C:\WINDOWS\SYSTEM32
    \KERNEL32.DLL
    0x77f40000-0x77f7bfff Image 0000245760 C:\WINDOWS\SYSTEM32
    \GDI32.DLL
    0x77f80000-0x77ff8fff Image 0000495616 C:\WINDOWS\SYSTEM32
    \NTDLL.DLL
    0x78000000-0x78045fff Image 0000286720 C:\WINDOWS\SYSTEM32
    \MSVCRT.DLL
    0x780a0000-0x780b1fff Image 0000073728 C:\WINDOWS\SYSTEM32
    \MSVCIRT.DLL
    0x78140000-0x78159fff Image 0000106496 C:\WINDOWS\SYSTEM32
    \MSV1_0.DLL
    ------------------- End of memory map --------------------
    ------------------- Registers ----------------------------
    eip = 012362cf esp = 097fb024 ebp = 097fbc00 edi = 0996a910 esi
    = 0996c258
    eax = 00000000 ebx = 098bca34 ecx = 098b3d44 edx = 098b3d44
    ecs = 0000001b eds = 00000023 ees = 00000023 ess = 00000023
    egs = 00000000 efs = 0000003b
    eflags = 00210206
    ------------------- End of Registers ---------------------
    ------------------- Instruction Disassembly --------------
    ------------------- End of Disassembly -------------------
    ------------------- Call Stack Trace ---------------------
    Frameptr RetAddr Param#1 Param#2 Param#3 Param#4 Function
    Name
    0x097fbc00 011dc4f0 098b3d44 098bc990 098bca34 0996a910
    _mdqtgmadt+16f     
    0x097fbc40 011ed2eb 098b3d44 098bc990 098bca34 098fccb0
    _mdidxrel+c0       
    0x097fbc94 011ee035 0996a810 09980ad0 09890f44 097fbd4c
    _mdrtrel+1cb       
    0x097fbd50 011ec071 00000000 000007d0 0996bc00 097fbfdc
    _mdrtpq+7d5        
    0x097fbfe8 011e5824 098fccb0 098b3d44 098bc990 098bca34
    _mdrtft+f1         
    0x097fc0fc 00e90c29 098fccb0 09979774 09979730 7a2bb7b8
    _mdidxf+254        
    0x097fc1d8 00646246 792691b4 097fc534 79269296 79269290
    _qeroifcf+1b9      
    0x097fc4a8 00e91417 7adb9634 00000179 097fc530 00000002
    _rpiswu2+226       
    0x097fc568 00e8f846 79269290 00e90a70 792691b4 0990cd30
    _qeroifcsu+a7      
    0x097fd9a4 010edd17 792691b4 00000000 097fdd24 00000001
    _qeroiFetch+1b6    
    0x097fdd10 010f99ac 792690dc 010fa040 7926908c 00007fff
    _qertbFetchByRowID+5
    0x097fdd44 00fc0202 7926908c 00fa6320 097fdf04 00000001
    _qersoFetch+9c     
    0x097fdf68 00fc5d03 00000089 00000005 097fdfc0 00000001
    _opifch2+10d2      
    0x097fe15c 00ede1cb 0000005e 00000022 097fe1a4 00000000
    _opiall0+d03       
    0x097fe2b4 00648369 0000005e 00000014 017ff6fc 00e5a8fc
    _kpoal8+58b        
    0x097fe424 605352c6 0000005e 00000014 097ff6fc 00000000
    _opiodr+549        
    0x097fe894 0064974a 01207104 0000005e 097ff6fc 00000000
    _ttcpip+1066       
    0x097ff874 00b6c934 00000000 00000000 014e76d0 0000003c
    _opitsk+74a        
    0x097ff958 00648369 0000003c 00000004 097ffbd8 00207104
    _opiino+554        
    0x097ffac8 004156cb 0000003c 00000004 097ffbd8 00000000
    _opiodr+549        
    0x097ffb58 0040920e 0000003c 00000004 097ffbd8 00000000
    _opidrv+24b        
    0x097ffb70 00401120 097ffbf4 0000003c 00000004 097ffbd8
    _sou2o+1e          
    0x097ffc08 00401c34 00000002 097ffe74 010373f4 77d4a1bb
    _opimai+120        
    0x097fffb4 77e92ca8 01037d94 010373f4 77d4a1bb 01037d94
    _OracleThreadStart@4
    0x097fffec 00000000 004018d0 01037d94 00000000 00000000
    0x77e92ca8
    ------------------- End of Stack Trace -------------------
    ------------------- Raw Stack Dump -----------------------
    Address Dump of bytes
    0x097fb024 c9 a3 6e 01 d3 a8 96 09 - 10 a8 96 09 53 45 4c
    45 ..n.........SELE
    0x097fb034 43 54 20 61 2e 22 43 4f - 56 45 52 41 47 45 22 20 CT
    a."COVERAGE"
    0x097fb044 46 52 4f 4d 20 44 41 52 - 53 2e 44 41 54 41 53 45
    FROM DARS.DATASE
    0x097fb054 54 20 61 20 77 68 65 72 - 65 20 61 2e 72 6f 77 69 T a
    where a.rowi
    0x097fb064 64 3d 3a 72 69 64 20 00 - a8 2f 20 00 70 2e 20 00
    d=:rid ../ .p. .
    0x097fb074 00 00 00 00 b0 b0 7f 09 - 46 ac 37 60 a8 2f 20
    00 ........F.7`./ .
    0x097fb084 00 00 00 00 00 20 00 00 - 28 10 00 00 3c 21 00
    00 ..... ..(...<!..
    0x097fb094 00 00 00 00 00 00 00 00 - 70 2e 20 00 00 00 00
    00 ........p. .....
    0x097fb0a4 0c 00 00 00 a8 2f 20 00 - 1c b1 7f 09 e1 9e 37
    60 ...../ .......7`
    0x097fb0b4 a8 2f 20 00 70 2e 20 00 - 9c 91 96 09 01 00 00
    00 ./ .p. .........
    0x097fb0c4 14 10 00 00 00 20 00 00 - 80 63 8d 09 7c 63 8d
    09 ..... ...c..|c..
    0x097fb0d4 58 63 8d 09 ff 2f 07 00 - 00 00 00 00 74 7b 38 60
    Xc.../......t{8`
    0x097fb0e4 00 00 00 00 00 00 00 00 - 01 00 00 00 00 00 00
    00 ................
    0x097fb0f4 00 00 00 00 58 63 8d 09 - a4 91 96 09 9c 91 96
    09 ....Xc..........
    0x097fb104 01 00 00 00 d8 80 37 60 - 58 63 8d 09 00 00 00
    00 ......7`Xc......
    0x097fb114 a4 91 96 09 0c 10 00 00 - 00 00 00 00 58 63 8d
    09 ............Xc..
    0x097fb124 9c 91 96 09 00 00 00 00 - 01 00 00 00 0c 10 00
    00 ................
    0x097fb134 00 00 00 00 4e a8 37 60 - a8 2f 20 00 00 00 00
    00 ....N.7`./ .....
    0x097fb144 00 00 00 00 0c 10 00 00 - 0c 10 00 00 58 63 8d
    09 ............Xc..
    0x097fb154 00 00 00 00 94 b1 7f 09 - a0 be 37 60 00 00 00
    00 ..........7`....
    0x097fb164 ff ff ff ff 00 00 00 00 - 24 8c 8b 09 14 10 00
    00 ........$.......
    0x097fb174 44 3d 8b 09 48 a8 96 09 - 00 10 00 00 48 63 8d 09
    D=..H.......Hc..
    0x097fb184 9c 63 8d 09 00 10 00 00 - d8 63 8d 09 00 00 00
    00 .c.......c......
    0x097fb194 bc b1 7f 09 5e 92 38 60 - a8 2f 20 00 58 63 8d
    09 ....^.8`./ .Xc..
    0x097fb1a4 0c 10 00 00 00 00 00 00 - a8 2f 20 00 02 00 00
    00 ........./ .....
    0x097fb1b4 01 00 00 00 01 00 00 00 - e4 9d 96 09 d8 11 8b
    09 ................
    0x097fb1c4 01 b2 7f 09 00 02 8c 09 - 90 c9 8b 09 bc 93 8d
    09 ................
    0x097fb1d4 3c 00 00 00 01 00 00 00 - d8 11 8b 09 a8 2f 20 00
    <............/ .
    0x097fb1e4 3c 00 00 00 7c 60 90 09 - 3c 00 00 00 14 b2 7f 09
    <...|`..<.......
    0x097fb1f4 d3 bc 3d 60 02 00 00 00 - 48 63 8d 09 49 4e 53
    49 ..=`....Hc..INSI
    0x097fb204 44 45 00 00 48 63 8d 09 - 38 b2 7f 09 74 7b 38 60
    DE..Hc..8...t{8`
    0x097fb214 a8 2f 20 00 08 00 00 00 - e0 9e 96 09 f4 63 8d
    09 ./ ..........c..
    0x097fb224 d8 11 8b 09 7c 60 90 09 - 3c 00 00 00 c0 69 45
    60 ....|`..<....iE`
    0x097fb234 d8 11 8b 09 7c 60 90 09 - 3c 00 00 00 64 b2 7f
    09 ....|`..<...d...
    0x097fb244 d3 bc 3d 60 a8 2f 20 00 - 48 63 8d 09 ec 9e 96
    09 ..=`./ .Hc......
    0x097fb254 a8 2f 20 00 3f 00 00 00 - 40 a1 96 09 64 d2 8a
    09 ./ [email protected]...
    0x097fb264 e8 b2 7f 09 6b bb 3d 60 - a8 2f 20 00 ec 9e 96
    09 ....k.=`./ .....
    0x097fb274 3c 00 00 00 00 00 00 00 - d0 50 47 60 00 00 00 00
    <........PG`....
    0x097fb284 00 00 00 00 a8 2f 20 00 - a8 2f 20 00 3c 00 00
    00 ...../ ../ .<...
    0x097fb294 44 d1 8a 09 70 2e 20 00 - d8 11 8b 09 18 b3 7f 09
    D...p. .........
    0x097fb2a4 89 85 3d 60 a8 2f 20 00 - ec 12 8b 09 3c 00 00
    00 ..=`./ .....<...
    0x097fb2b4 01 00 00 00 d8 11 8b 09 - a8 2f 20 00 3c 00 00
    00 ........./ .<...
    0x097fb2c4 dc b2 7f 09 88 79 3e 60 - fc 10 8b 09 88 b2 7f
    09 .....y>`........
    0x097fb2d4 9c de 95 09 88 c2 7f 09 - fb ff ff ff 40 00 00
    00 ............@...
    0x097fb2e4 48 63 8d 09 14 b3 7f 09 - 74 7b 38 60 a8 2f 20 00
    Hc......t{8`./ .
    0x097fb2f4 04 00 00 00 d0 9d 96 09 - f4 63 8d 09 d8 11 8b
    09 .........c......
    0x097fb304 7c 60 90 09 3c 00 00 00 - c0 69 45 60 d8 11 8b 09
    |`..<....iE`....
    0x097fb314 7c 60 90 09 3c 00 00 00 - 40 b3 7f 09 d3 bc 3d 60
    |`..<...@.....=`
    0x097fb324 a8 2f 20 00 48 63 8d 09 - dc 9d 96 09 a8 2f 20
    00 ./ .Hc......./ .
    0x097fb334 c0 39 8b 09 0c 8a 8b 09 - 64 d2 8a 09 c4 b3 7f
    09 .9......d.......
    0x097fb344 6b bb 3d 60 a8 2f 20 00 - dc 9d 96 09 3c 00 00 00
    k.=`./ .....<...
    0x097fb354 00 00 00 00 7c f4 bd 60 - 00 00 00 00 00 00 00
    00 ....|..`........
    0x097fb364 24 bb 7f 09 c0 39 8b 09 - 0c 8a 8b 09 96 ef d6 34
    $....9.........4
    0x097fb374 9c 19 8b 09 44 d1 8a 09 - 0c 00 00 00 9c 19 8b
    09 ....D...........
    0x097fb384 9c 19 8b 09 b0 b3 7f 09 - 84 08 3d 60 a8 2f 20
    00 ..........=`./ .
    0x097fb394 8c 0b 8b 09 0c 00 00 00 - a8 2f 20 00 0c 00 00
    00 ........./ .....
    0x097fb3a4 40 89 92 09 fc 10 8b 09 - 64 b3 7f 09 a4 9d 8a 09
    @.......d.......
    0x097fb3b4 bc b7 7f 09 c0 69 45 60 - 88 86 45 60 ff ff ff
    ff .....iE`..E`....
    0x097fb3c4 f0 b3 7f 09 1f f4 ac 60 - a8 2f 20 00 2c 00 00
    00 .......`./ .,...
    0x097fb3d4 3c 00 00 00 00 00 00 00 - 7c f4 bd 60 00 00 00 00
    <.......|..`....
    0x097fb3e4 00 00 00 00 3c 00 00 00 - 24 8c 8b 09 60 04 00
    00 ....<...$...`...
    0x097fb3f4 11 00 00 00 00 00 00 00 - 4c b4 7f 09 4f 6a ad
    60 ........L...Oj.`
    0x097fb404 24 bb 7f 09 a0 ba 7f 09 - 68 b9 7f 09 00 00 00 00
    $.......h.......
    0x097fb414 00 00 00 00 a8 2f 20 00 - a8 2f 20 00 3f 00 00
    00 ...../ ../ .?...
    0x097fb424 44 d1 8a 09 70 2e 20 00 - d8 11 8b 09 a8 b4 7f 09
    D...p. .........
    0x097fb434 89 85 3d 60 a8 2f 20 00 - ec 12 8b 09 3f 00 00
    00 ..=`./ .....?...
    0x097fb444 01 00 00 00 d8 11 8b 09 - a8 2f 20 00 3f 00 00
    00 ........./ .?...
    0x097fb454 24 bb 7f 09 a0 ba 7f 09 - 68 b9 7f 09 80 8b 8b 09
    $.......h.......
    0x097fb464 ec 8a 8b 09 00 00 00 00 - 7f ff ff ff 90 00 00
    00 ................
    0x097fb474 04 ed 95 09 a0 b4 7f 09 - a0 b4 7f 09 fc eb 23
    01 ..............#.
    0x097fb484 ac b8 7f 09 03 00 00 00 - ac b8 7f 09 ac b8 7f
    09 ................
    0x097fb494 00 00 00 00 20 a4 96 09 - 00 00 00 00 cc b4 7f
    09 .... ...........
    0x097fb4a4 39 ec 23 01 60 a4 96 09 - 02 00 00 00 03 00 00 00
    9.#.`...........
    0x097fb4b4 00 00 00 00 00 00 00 00 - 00 00 41 40 7c b6 7f
    09 ..........A@|...
    0x097fb4c4 ac b8 7f 09 ac b8 7f 09 - 58 b5 7f 09 44 e4 23
    01 ........X...D.#.
    0x097fb4d4 04 00 00 00 02 00 00 00 - 03 00 00 00 00 00 00
    00 ................
    0x097fb4e4 00 00 41 40 00 00 00 00 - f8 b4 7f 09 28 b7 7f
    09 ..A@........(...
    0x097fb4f4 01 00 00 00 00 00 00 00 - 00 00 41 40 00 00 00
    00 ..........A@....
    0x097fb504 00 00 5c c0 00 00 00 00 - 00 00 00 00 00 00 00
    00 ..\.............
    0x097fb514 00 00 00 00 00 00 00 00 - 00 e0 40 40 00 00 00
    00 ..........@@....
    ------------------- End of Raw Stack Dump ----------------

Maybe you are looking for

  • How do I connect the remote app on my iDevice to my computer?

    I've seen this question asked plenty of times and have followed all of the suggested fixes and still cannot figure this out. I am running Windows 8, with iTunes version 11.0.5 My iDevice is an iPhone 4 running iOS 6.1.3 My Remote app is version 3.0.1

  • Restricting a user to enter fixed characters in an input field (mobile)

    Hi All, I have created a simple type and set its length to some fixed characters. I have mapped this simple type to an input field. When I run this application on desktop it doesn't allow the user to enter characters more than the fixed length of the

  • One-to-many outer join in MView, is possible?

    Re: 10g R2 Is it simply not possible to have fast refresh on outer joins that are 1-to-many relations? I have in this script a unique key addition to "fix" it, but it restricts something that I don't want restricted. If indeed this is how it should w

  • How do you make a new internal drive bootable?

    I have an early 2009 Mac Pro running 10.8.4, and just installed two new internal sata drives. I initialized them (Mac OX Extended (journaled). Are they now ready to install a system on (bootable)? I want to install 10.7 on one drive, and OSX 10.6.8 o

  • Copy Control - Address Details from Quantity Contract to Purchase Order

    Dear Experts, When I create a Purchase order w.r.t a Quantity Contract, in some cases the address details (such as street address, phone #, e-mail etc.) are copied from Quantity contract and in other cases they are copied from the vendor master. I co