Reg: Table doesn't exist -

Hi Experts,
I'm getting this error - 'Table or View doesn't exist' when the table <tt>DBA_DML_LOCKS</tt> is used inside a (cursor) package but the same works fine when run independently.
I'm quite sure that I'm lacking some knowledge there. Can anybody please help me in that?
CREATE OR REPLACE PROCEDURE dml_locks
AUTHID CURRENT_USER --DEFINER
IS
   CURSOR cur_locks
   IS
      SELECT ROW_NUMBER () OVER (PARTITION BY b.session_id ORDER BY b.name)
                "Rno",
             a.sid "session_id",
             a.schemaname,
             b.name "table_name",
             b.mode_held "lock_mode_held",
             a.osuser,
             a.machine,
             a.program
        FROM v$session a, dba_dml_locks b
       WHERE a.sid = b.session_id;
BEGIN
   FOR i IN cur_locks
   LOOP
       --HTP.PRINT (i.rno || '---' || i.session_id);
       htp.print('*');
   END LOOP;
EXCEPTION
   WHEN OTHERS
   THEN
      HTP.PRINT ('Error - ' || DBMS_UTILITY.format_error_backtrace);
END;Is it something related to the rights - Definer or Current User?
Checked this similar thread but couldn't understand - table/view does not exist using dbms_sql
Help much appreciated!
- Ranit (on Oracle Database 10g Enterprise Edition Release *10.2.0.5.0* - 64bi )

ranit B wrote:
Karthick_Arp wrote:
Grant to dictionary objects is assigned through a ROLE to your user. You need to have grant assigned explicitly to your user to access the object from within a PL/SQL code.Ohhh... nice to hear that. Thanks!
Can't I use <tt>AUTHID</tt> to resolve this?
And I'm not getting - what is the difference between Grants through ROLE and explicitly assigned Grants? I mean to say finally all give Grants only right??
Edited by: ranit B on May 6, 2013 12:41 PMhttp://asktom.oracle.com/pls/asktom/ASKTOM.download_file?p_file=6551289900368934430

Similar Messages

  • Table doesn't Exist Error

    Hi,
    I have source as oracle database and target as HFM. However, I am facing issue in reverse engineering the RDBMS model. It doesn't show the table columns and gives the error "Table doesn't exist.".
    I have tried creating a public synonym as well but to no avail.
    Can anyone please suggest the suitable resolution?
    Thanks
    Abhi

    Hi,
    I added these keys but it is still not reflecting the columns. I tried with credential with DBA privileges but to no avail. The database connection is also getting connected with no hassles.
    Please advice.
    Thanks!

  • Table doesn't exist

    CS3 on a Macbook Pro
    MAMP
    SQL database with 15 fields and 124 records that was imported from a csv
    I have connected my database to dreamweaver successfully, but when i right click on the table of the database to view data, it produces an error stating the the table doesn't exist.  It does.  I can view the table through phpmyadmin and there are 124 records.
    I created a test table within the same data base and filled it with data, and I was able to see the data in Dreamweaver.  I don't know why one table will 'exist' and the other one 'doesn't exist.'
    thank you.

    thank you david for your guidance.  i solved this problem just a few minutes ago.  i was taking data from an excel spreadsheet, copying the csv data and pasting it into a text document and then changing the extension from .txt to .csv.  this was a necessary workaround because of a problem with the original database.  i found a way to generate the csv data directly from the original database and that solved it.
    i now have a problem and i've started another thread... i have 104 records in my table and view data in DW only shows 100. 
    thanks for your time.
    kevin

  • Error in loading Target table doesn't exist in target schema

    I am having the following error to load data to the target
    table: Connection failed to HR_TGT.orders ora-000942.
    'Table or view does not exist'
    The table exists and the odi super user has all the priviliges
    over tables in HR_TGT.
    What could be wrong with my configuration

    I am using the original Oracle Integration KM.
    My Replicat doesn't start any longer
    Here are my configuration files
    Source Files
    ODISC.prm
    extract ODISC
    userid OGATE, password OGATE
    exttrail C:\GGSRC/dirdat/ODISoc/oc
    TABLE HR_SRC.ORDER_LINES;
    ODISD.prm
    defsfile C:\GGSRC/dirdef/ODISC.def, purge
    userid OGATE, password OGATE
    TABLE
    HR_SRC.ORDER_LINES;
    Target Files
    C:\ggstg\diroby\ODIT1T.oby
    dblogin userid OGATE, password OGATE
    add checkpointtable ODIW.ODIOGGCKPT
    add replicat ODIT1A1, exttrail C:\GGSTG/dirdat/ODIT1op/op, checkpointtable ODIW.ODIOGGCKPT
    stop replicat ODIT1A1
    start replicat ODIT1A1
    C:\ggstg\dirprm\ODIT1A1.prm
    replicat ODIT1A1
    userid OGATE, password OGATE
    discardfile C:\GGSTG/dirrpt/ODIT1.dsc,
    purge
    source defs C:\GGSTG/dirdef/ODISC.def
    map HR_SRC.ORDER_LINES, TARGET HR_STG.ORDER_LINES, KEYCOLS (ORDER_ID, PRODUCT_ID);
    map HR_SRC.ORDER_LINES, target ODIW.J$ORDER_LINES, KEYCOLS (ORDER_ID, PRODUCT_ID, WINDOW_ID), INSERTALLRECORDS, OVERRIDEDUPS,
    COLMAP (
    ORDER_ID = ORDER_ID,
    PRODUCT_ID = PRODUCT_ID,
    WINDOW_ID = @STRCAT(@GETENV("RECORD", "FILESEQNO"), @STRNUM(@GETENV("RECORD", "FILERBA"), RIGHTZERO, 10))
    I have deleted the extract ODISC and ODIT1P as well as the checkpionttable ODIW.ODIOGGCKPT
    Recreated the items.
    I did same thing with the replicat ODIT1A1
    The extracts had always started with little difficulties but the replicat once started but didn't transmit integrated data to
    the target.
    Now it is not starting at all.
    I have deleted and recreate it but the same results

  • Table doesn't exist error while creating a procedure

    The query executes and retrieve records but when the query is put into a procedure , the procedure is giving error (4/30 PL/SQL: ORA-00942: table or view does not exist) during creation. The snurk_cmms_csht008_rfs_misc is a public synonym refering to db2 database. How to make the procedure to get created ?
    SQL> CREATE PROCEDURE TEST AS
    2 I VARCHAR2(20);
    3 BEGIN
    4 SELECT CD_PLANT INTO I FROM snurk_cmms_csht008_rfs_misc
    5 WHERE ROWNUM <2;
    6 END;
    7 /
    Warning: Procedure created with compilation errors.
    SQL> SHOW ERRORS;
    Errors for PROCEDURE TEST:
    LINE/COL ERROR
    4/2 PL/SQL: SQL Statement ignored
    4/30 PL/SQL: ORA-00942: table or view does not exist
    SQL> SHOW USER;
    USER is "ORDV_SRC"
    SQL> SELECT CD_PLANT FROM snurk_cmms_csht008_rfs_misc WHERE ROWNUM <2;
    CD_PL
    AP01A
    thanks,
    Vinodh

    Create a local view on the remote table (using the synonym).
    Then you can reference the view always from your procedure.
    Of cause during the creation of the view the database link to the remote DB must exist.
    But later you can change your procedure/package even if the remote connection is not established.
    Edited by: Sven W. on Sep 8, 2011 2:04 PM

  • Table doesn't exist, rep cannot start

    Hi,
    I have the following error
    2011-09-30 17:38:34 ERROR OGG-00199 Oracle GoldenGate Delivery for Oracle, rep1.prm: Table SIEBEL.JMT_PWD does not exist in target database.
    so the rep1 cannot start
    how can I solve this ?
    Thanks for your help
    OGG 11.1.1 on AIX
    Oracle 9.2

    Again, do you have any trails waiting to be applied? You need to move past those. Or, just drop and re-create the process group (having extract starting now, and replicat starting now).
    You can also go through the tutorial to get a working environment running. Have you tried that?
    https://apex.oracle.com/pls/apex/f?p=44785:24:4300991440933995::NO:24:P24_CONTENT_ID,P24_PREV_PAGE:5340,2

  • SE14 Status-UPGRADE-Table does not exist in the database

    Folks,
    I have created a ztable with SPRAS and few Char fields and generated a table maintenance generator.In the Dev it is working fine but when I moved the TR to Q TR ended up with errrors "Generation of Programs and Screens".When I check in Q in SE11 I am able to see the table but with an error message "Table doesn't exist in the database".
    SE14 Status for this table is getting shown as UPGRADE in Q.
    Can anyone here throw some light on what exactly this status UPGRADE means and how it gets set in SE14.
    In DEV,I had checked the DATABASE OBJECT>>CHECK>DISPLAY and RUNTIME OBJECT>>CHECK>>DISPLAY and it is showing Database object is consistent but where as the same in Q is showing "Table is not created in the Database".
    K.Kiran.

    Hi.
    Is Q system is newly copied? Also please check the transport order of the table creation request. Also check whether pwd of the DB user is locked?
    Regards,
    Vimal

  • Error trying to relate tables "...either doesn't exist or doesn't have a relationship to any table available in the current context"

    I have two tables;
    The first is my Order table which has a single row for each unique order - there are no duplicate order numbers.The order id column here is called
    OrderID.
    The second is my Submissions table which is similar to a transactions table, there are multiple submissions for every order. This table also contains an
    OrderID column that contains the relevant OrderID.
    The submission table also contains a calculated field called Date and a calculated field called
    MaxDate field which is the date of the most recent submission that relates to any particular order in cases where there are multipple.
    My goal is to add a column to the Order table this MaxDate column. The reason for duplicating the information rather than linking the tables is because I need to create more calculated columns in the
    Orders table based on this value.
    I have created a relationship between the two tables however when I use:
    =RELATED(Submissions[MaxDate]
    I get this error:
    "...either doesn't exist or doesn't have a relationship to any table available in the current context"
    I don't really understand why this would be, because MaxDate definitely exists and contains only numerical values. What is more strange is that if I try and combine the data through a pivot table it actually works! I can create a pivot with OrderID in the first
    column and then associate it with MaxDate from the Submissions
    table as the value. 
    Can anyone help me understand what is the problem here?
    P.S. if it is useful the formula I'm using to calculate the MaxDate is:
    =MAXX(FILTER(Submissions,Submissions[OrderID] = EARLIER(Submissions[OrderID])),[Date])
    Thanks.

    Maracles, is this still an issue?
    Thanks!
    Ed Price, SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Table 'sitv.a' doesn't exist.  vendor code 1146

    Post Author: pattyg
    CA Forum: Crystal Reports
    I need help with a sql statement that I am using in Crystal reports.  The table that I am using is sitv and I get an error that
    it doesn't exist.
    Here is the statement:
    SELECT a.UID, a.fid, b.fname , c.lname, d.genderFROM a as profile_values LEFT OUTER JOIN (SELECT uid,fid, cast(value as char (20)) as 'Fname'     FROM profile_values     WHERE profile_values.fid =1) as bON a.UID = b.UIDLEFT OUTER JOIN(SELECT uid,fid, cast(value as char (20)) as 'lname'    FROM profile_values     WHERE profile_values.fid =2) as cON a.UID = c.UIDLEFT OUTER JOIN(SELECT uid,fid, cast(value as char (20)) as 'gender'    FROM profile_values     WHERE profile_values.fid =3) as dON a.UID = d.UID
    Any help will be greatly appreciated.  Thanks in advance.

    Post Author: pattyg
    CA Forum: Crystal Reports
    I figured it out after I went though my statements more closely.  The second line was reversed.
    FROM a as profile_values
    It should be From provile_values as a.

  • Schematool : Table '...' doesn't exist on MySQL

    I'm trying to use schematool to create the db tables that it has defined in
    various jdo files. When I run it I get the following
    schematool -action refresh target/classes/net/ajsoft/WebShop/Product/*.jdo
    Exception in thread "main" java.sql.Exception: General error, message from
    server: "Table 'JDO.Product' doesn't exist"
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:1651)
    at
    com.solarmetric.datasource.PoolConnection$PoolStatement.executeUpdate(PoolConnection.java:112)
    I am running with a MySQL DB v4.0.11a, and with its JDBC connector v3.0.8.
    There are 3 jdo files being passed in (I assume it can cope with multiple
    input files) - the Base class is Product (jdo file attached), with the
    other 2 being derived from that.
    The database exists, and I can access it (create tables, select etc) using
    Triactive JDO (Triactive uses the table PRODUCT, whereas Kodo should be
    creating 'Product'). In fact, Kodo has created a table JDO_SEQUENCEX, so
    its reaching the DB.
    Any ideas what I'm missing ?
    Andy

    I highly recommend using all upper-case in both metadata extensions as
    well as in your own SQL scripts. For example, in Oracle, table names are
    case-insenstive in SQL scripts, but for retrieval in system tables (e.g.
    USER_TABLES), Oracle will reject non-matching cases.
    This is good general policy with many databases, if not all.
    On Fri, 08 Aug 2003 19:51:33 +0100, Andy Jefferson wrote:
    Andy Jefferson wrote:
    I'm trying to use schematool to create the db tables that it has defined
    in various jdo files. When I run it I get the following
    schematool -action refresh target/classes/net/ajsoft/WebShop/Product/*.jdo
    Exception in thread "main" java.sql.Exception: General error, message from
    server: "Table 'JDO.Product' doesn't exist"
    at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:1651)
    at
    com.solarmetric.datasource.PoolConnection$PoolStatement.executeUpdate(PoolConnection.java:112)As a followup, I deleted all tables from the DB and re-ran schematool.
    Worked fine. Would be nice to understand what happened the first time to
    cause that error.
    Andy--
    Steve Kim
    [email protected]
    SolarMetric Inc.
    http://www.solarmetric.com

  • Table or view doesn't exist when deploying a mapping

    Hello,
    OWB and BI in general is new for me. I have read the tutorials but I have a problem and I don't understand how to solve it :
    I have 2 databases in 2 different services :
    - dbsrc (where I have tabsrc with 2 columns)
    - dbtarget (where I have tabtarget with 1 column)
    OWB connect correctly to dbsrc
    I have made a mapping between dbsrc and dbtarget and I have just joined the second column of dbsrc with the unique column of dbtarget.
    All the steps before deploying are ok but when I deployed I have a warning saying that table or view doesn't exist.
    I have used the debugger and it seems that owb searches dbsrc in the service dbtarget ... I have copied my table from dbsrc to dbtarget and in this case the deployement and the execution of the mapping runs correctly.
    What I'm doing wrong ? Why OWB isn't able to see that my table source is in another database/services ?
    Thanks in advance for your help.

    Hi,
    In design center, you need two oracle dbs: one as data source (with a location pointing to you src db) and one as dwh target (with a location pointing to your target db).
    Your mapping has to be in the target db. In the mapping, you use the target table from the target db and the source table from the source db.
    When you deploy the mapping using control center manager, owb will create a database link for you from the target to the source db. The mapping will read the data through that database link and write it into the target table.
    Regards,
    Carsten.

  • Enhancing existing Abap code: using values that doesn't exist in table

    Hi,<br><br>
    I would like to enhance this code . My requirement is as follows.<br><br>
    I have two tables  customer and product<br><br>
    <pre>KNVP  customer master data table
    Customer                            PF                Person
    700008          YF     45555
    700008          YQ     46666
    700008          ZF     46666
    700008          YM     49999
    700008          ZQ     44444
    700008          ZM     43333
    T179 product hierarchy table*
    product hier                     PF
    1000014000          ZM     
    1000015000          ZF     
    1000033000          ZQ     
    The current extractor is showing YM for all YPF values
    Customer         Zperson          ZPF        YPF    YPerson
    700008            46666              ZF          YM        49999
    700008            43333              ZQ         YM        49999
    700008            44444              ZM         YM        49999</pre>
    <br><br>
    Case 1:IF customer doesn't have Partner function value YQ in master data then partner function YF person and partner function should be use.
    <br><br>
    case 2: IF customer doesn't have Partner function value YF in master data then partner function YQ person and partner function should be use.
    <br><br>
    case3:IF customer doesn't have Partner function value YQ and YF in master data then partner function YM person and partner function should be use.
    <br><br>
    The tricky part is that YQ doesn't exist in T179 table
    <br><br>
    <pre>
    LOOP AT T_DATA.
          ZIDX = SY-TABIX.
          CLEAR T179.
       Select partner function, assigned to current
       product hierarchy level 2
          SELECT * FROM T179
                   WHERE  STUFE = '2'
                   AND    PRODH = T_DATA-PRODH.
          ENDSELECT.
       Replace value with new partner function.
       by replacing first letter to 'Y'
          CONCATENATE 'Y' T179-ZZPARVW+1(1) INTO NEWPF.
       Try to find new sales employee with this new partner function
          CLEAR KNVP.
          SELECT * FROM  KNVP UP TO 1 ROWS
            WHERE  KUNNR  = T_DATA-KUNNR
            AND    VKORG  = T_DATA-VKORG
            AND    PARVW  = NEWPF.
          ENDSELECT.
          IF SY-SUBRC EQ 0.
       New partner found with this partner function
            T_DATA-ZPARVW = NEWPF.
            T_DATA-ZPERNR = KNVP-PERNR.
      ELSE.
                NEWPF = 'YM'.
       Try to find new sales employee with partner function 'YM'
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = NEWPF.
            ENDSELECT.
            T_DATA-ZPARVW = NEWPF.
            T_DATA-ZPERNR = KNVP-PERNR.
          ENDIF.
          MODIFY T_DATA INDEX ZIDX TRANSPORTING ZPARVW ZPERNR.
    </pre>
    <br><br>Edited by: Matt on Aug 24, 2010 9:31 AM - fixed formatting

    Hi,
    thanks for your input, I have written it like this and it is working well for YQ and YF partner functions but YM is not showing when both are missing.
    LOOP AT T_DATA.
          ZIDX = SY-TABIX.
          CLEAR T179.
    *    Select partner function, assigned to current
    *    product hierarchy level 2
          SELECT * FROM T179
                   WHERE  STUFE = '2'
                   AND    PRODH = T_DATA-PRODH.
          ENDSELECT.
    *    Replace value with new partner function.
    *    by replacing first letter to 'Y'
          CONCATENATE 'Y' T179-ZZPARVW+1(1) INTO NEWPF.
    IF SY-SUBRC EQ 0.
    IF NEWPF EQ 'YF'.
          READ TABLE T_KNVP WITH KEY PARVW = 'YF'.
            IF SY-SUBRC EQ 0.  "YF exists in master data
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = 'YF'.
            ENDSELECT.
              T_DATA-ZPARVW = 'YF'.
              T_DATA-ZPERNR = KNVP-PERNR.
            ELSE.
            READ TABLE T_KNVP WITH KEY PARVW = 'YQ'.
            IF SY-SUBRC EQ 0. "YQ exists in master data
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = 'YQ'.
            ENDSELECT.
               T_DATA-ZPARVW = 'YQ'.
               T_DATA-ZPERNR = KNVP-PERNR.
    ENDIF.
    ENDIF.
    ENDIF.
    IF NEWPF EQ 'YQ'.
          READ TABLE T_KNVP WITH KEY PARVW = 'YQ'.
            IF SY-SUBRC EQ 0.  "YQ exists in master data
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = 'YQ'.
            ENDSELECT.
              T_DATA-ZPARVW = 'YQ'.
              T_DATA-ZPERNR = KNVP-PERNR.
            ELSE.
            READ TABLE T_KNVP WITH KEY PARVW = 'YF'.
            IF SY-SUBRC EQ 0. "YF exists in master data
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = 'YF'.
            ENDSELECT.
               T_DATA-ZPARVW = 'YF'.
               T_DATA-ZPERNR = KNVP-PERNR.
    ENDIF.
    ENDIF.
    ENDIF.
          ELSE.
            NEWPF = 'YM'.
    *    Try to find new sales employee with partner function 'YM'
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = NEWPF.
            ENDSELECT.
            T_DATA-ZPARVW = NEWPF.
            T_DATA-ZPERNR = KNVP-PERNR.
          ENDIF.
          MODIFY T_DATA INDEX ZIDX TRANSPORTING ZPARVW ZPERNR.
        ENDLOOP.
    thanks
    Edited by: Bhat Vaidya on Aug 30, 2010 1:31 PM

  • Procedure Issue (Table/View Doesn't Exist)

    Hi,
    I am running procedure its giving error (table/view doesn't exist) but if i run plsql block then noo error. Please note there is no grants issue.
    please see.
    1) Successfull case:
    BEGIN
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LRDA1';
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LRDA2';
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LINERENTDISCOUNTB';
    END;
    2)Un-Successfull case: Table / View doesnt exist.
    CREATE OR REPLACE PROCEDURE mobi_test AS
    BEGIN
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LRDA1';
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LRDA2';
    EXECUTE IMMEDIATE 'TRUNCATE TABLE BILLPRO.LINERENTDISCOUNTB';
    END;
    BEGIN
    mobi_test;
    END;
    Any help.
    Regards,
    Irfan Ahmad

    The problem is that your grants for your user to be able to truncate those tables is given through a role. An anonymous block will use role based permissions so you're ok that way. But when it's a stored procedure, role based permissions don't apply.
    To solve it, grant delete/truncate permissions to that user directly.

  • SQLException:Table 'honeypot.casebase' doesn't exist

    Im currently using MySQL database, and encounter this error when I try to run my program. Someone please pin-point my mistake? Im new to Java and MySQL.
    SQLException:Table 'honeypot.casebase' doesn't exist
    java.sql.SQLException: Table 'honeypot.casebase' doesn't exist
           at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2851)
           at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1531)
           at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1622)
           at com.mysql.jdbc.Connection.execSQL(Connection.java:2379)
           at com.mysql.jdbc.Connection.execSQL(Connection.java:2306)
           at com.mysql.jdbc.Statement.executeUpdate(Statement.java:1298)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantTestClassRDB.
    flush(QuadrantTestClassRDB.java:97)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantTestClassRDB.
    main(QuadrantTestClassRDB.java:39)
    java.sql.SQLException: Table 'honeypot.problemfeaturespec' doesn't exist
           at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2851)
           at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1531)
           at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1622)
           at com.mysql.jdbc.Connection.execSQL(Connection.java:2379)
           at com.mysql.jdbc.Connection.execSQL(Connection.java:2306)
           at com.mysql.jdbc.Statement.executeQuery(Statement.java:1192)
           at edu.indiana.iucbrf.feature.featurespec.FeatureSpecRDB.getFeatureSpecC
    ount(FeatureSpecRDB.java:162)
           at edu.indiana.iucbrf.problem.differentiator.AbstractProblemDifferentiat
    or.setupDefaultFeatureDifferentiators(AbstractProblemDifferentiator.java:85)
           at edu.indiana.iucbrf.problem.differentiator.AbstractProblemDifferentiat
    or.<init>(AbstractProblemDifferentiator.java:74)
           at edu.indiana.iucbrf.problem.differentiator.AbstractProblemDifferentiat
    or.<init>(AbstractProblemDifferentiator.java:62)
           at edu.indiana.iucbrf.problem.differentiator.EuclideanProblemDifferentia
    tor.<init>(EuclideanProblemDifferentiator.java:40)
           at edu.indiana.iucbrf.domain.Domain.standardInit(Domain.java:260)
           at edu.indiana.iucbrf.domain.Domain.<init>(Domain.java:241)
           at edu.indiana.iucbrf.domain.Domain.<init>(Domain.java:197)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantDomainRDB.<in
    it>(QuadrantDomainRDB.java:40)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantSystemRDB.set
    upDomain(QuadrantSystemRDB.java:159)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantSystemRDB.<in
    it>(QuadrantSystemRDB.java:103)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantTestClassRDB.
    main(QuadrantTestClassRDB.java:46)
    keySet true
    java.sql.SQLException: Table 'honeypot.problemfeaturespec' doesn't exist
           at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:2851)
           at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:1531)
           at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1622)
           at com.mysql.jdbc.Connection.execSQL(Connection.java:2379)
           at com.mysql.jdbc.Connection.execSQL(Connection.java:2306)
           at com.mysql.jdbc.Statement.executeQuery(Statement.java:1192)
           at edu.indiana.iucbrf.feature.featurespec.FeatureSpecRDB$AbstractFSCIter
    atorRDB.<init>(FeatureSpecRDB.java:473)
           at edu.indiana.iucbrf.feature.featurespec.FeatureSpecRDB$FSCEntryIterato
    rRDB.<init>(FeatureSpecRDB.java:558)
           at edu.indiana.iucbrf.feature.featurespec.FeatureSpecRDB.orderedAllEntry
    Iterator(FeatureSpecRDB.java:367)
           at edu.indiana.iucbrf.problem.differentiator.AbstractProblemDifferentiat
    or.setupDefaultFeatureDifferentiators(AbstractProblemDifferentiator.java:87)
           at edu.indiana.iucbrf.problem.differentiator.AbstractProblemDifferentiat
    or.<init>(AbstractProblemDifferentiator.java:74)
           at edu.indiana.iucbrf.problem.differentiator.AbstractProblemDifferentiat
    or.<init>(AbstractProblemDifferentiator.java:62)
           at edu.indiana.iucbrf.problem.differentiator.EuclideanProblemDifferentia
    tor.<init>(EuclideanProblemDifferentiator.java:40)
           at edu.indiana.iucbrf.domain.Domain.standardInit(Domain.java:260)
           at edu.indiana.iucbrf.domain.Domain.<init>(Domain.java:241)
           at edu.indiana.iucbrf.domain.Domain.<init>(Domain.java:197)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantDomainRDB.<in
    it>(QuadrantDomainRDB.java:40)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantSystemRDB.set
    upDomain(QuadrantSystemRDB.java:159)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantSystemRDB.<in
    it>(QuadrantSystemRDB.java:103)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantTestClassRDB.
    main(QuadrantTestClassRDB.java:46)
    Exception in thread "main" java.lang.NullPointerException
           at edu.indiana.util.db.DBTools.closeResultSet(DBTools.java:140)
           at edu.indiana.iucbrf.feature.featurespec.FeatureSpecRDB$AbstractFSCIter
    atorRDB.hasNext(FeatureSpecRDB.java:499)
           at edu.indiana.iucbrf.problem.differentiator.AbstractProblemDifferentiat
    or.setupDefaultFeatureDifferentiators(AbstractProblemDifferentiator.java:88)
           at edu.indiana.iucbrf.problem.differentiator.AbstractProblemDifferentiat
    or.<init>(AbstractProblemDifferentiator.java:74)
           at edu.indiana.iucbrf.problem.differentiator.AbstractProblemDifferentiat
    or.<init>(AbstractProblemDifferentiator.java:62)
           at edu.indiana.iucbrf.problem.differentiator.EuclideanProblemDifferentia
    tor.<init>(EuclideanProblemDifferentiator.java:40)
           at edu.indiana.iucbrf.domain.Domain.standardInit(Domain.java:260)
           at edu.indiana.iucbrf.domain.Domain.<init>(Domain.java:241)
           at edu.indiana.iucbrf.domain.Domain.<init>(Domain.java:197)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantDomainRDB.<in
    it>(QuadrantDomainRDB.java:40)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantSystemRDB.set
    upDomain(QuadrantSystemRDB.java:159)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantSystemRDB.<in
    it>(QuadrantSystemRDB.java:103)
           at edu.indiana.iucbrf.examples.quadrantRDBTemplate.QuadrantTestClassRDB.
    main(QuadrantTestClassRDB.java:46)
    Press any key to continue...

    thanks guys for replying..im currently searching for
    the code that calls the database..Yes well do that.
    >
    yes, my database name is 'honeypot'. and it has a
    table called 'CaseBaseTable' inside it. I dont know
    why it still pointing to casebase..Okay...
    Don't use that fully qualified style of access whatever the table name is...
    Do you understand?
    Do not do this.
    DATABASENAME.TABLENAME
    Just do this.
    TABLENAME

  • Error:Check table 158:entry COR6N doesn't exist

    Dear PP Gurus
    When i am trying to do confirmation( COR6N)  an error is coming  "<b>Check table 158:entry COR6N doesn't exist</b>".
    Can u pls suggest why this is happening...........???
    Regards
    Ragesh

    Dear Padosh/Murugesh
    By mistake...i had given full points...
    Mr Pradosh only first suggested that sol'n, so Murugesh i have given to u vry helpful answer
    Regards
    Ragesh
    null

Maybe you are looking for

  • Security warning when searching

    33.1.1, XP, SP3 Since upgrading to 33.1.1 every time I do a Google search from my BT Home Page I get the following security warning: "Although this page is encrypted, the information you have entered is to be sent over an unencrypted connection and c

  • Manually provided DNS server addresses are higher priority than DHCP's

    Disclaimer: Apple does not necessarily endorse any suggestions, solutions, or third-party software products that may be mentioned in the topic below. Apple encourages you to first seek a solution at Apple Support. The following links are provided as

  • Urgently need Help

    Hai all, To send mail with csv format i am using 'SO_NEW_DOCUMENT_ATT_SEND_API1' this function  module , my problem is data is sending but format is not correct i mean in internal table there are 5 records it is displaying continuesly in first line,

  • Using ac power adapter vs. battery on MacBook Pro

    I purchased a 15 inch MacBook Pro with retina display a couple months ago.  Most of the time I use it with the ac power adapter.  Is there any harm to the battery life if I never left the battery drain down some and then recharge it? I have come to u

  • ICS upgrade deleted all email and 1 of 4 email accounts

    Upgraded to ICS and ALL emails were deleted and 1 account. Reentered the deleted account and revalidated the others and was at least able to retrieve the emails that were still on my server. BE WARNED!