I can't see my table in my app with oracle 9i

Hi:
I have an app with Java and O9i where i have to delete some data in table, but when i execute my metod appears a "ORA-00903: invalid table name" error code, but when i check the schema in DbVisualizer i see it that table in fact i can delete data manually but in my app don't.
Somebody have the same problem or some can help me please. Thks
.

> now the question is
does't matter CAPS? in my app
Generally, no.
When you create a table like this
CREATE TABLE aa_Sales (...);the name is automatically stored in the data dictionary as "AA_SALES". The parser also uppercases the name when you refer to it is a query like
SELECT * FROM AA_sales;so the names match and everything works regardless of case.
The exception to this is when you explicitly name a table in double-quotes (which clearly you haven't here as the query from all_tables showed), or if you place double-quotes around the name in a query, because in both cases this forces case-sensitivity.

Similar Messages

  • Can't see my tables from a JDBC program

    Hi there,
    I have a JDBC program to connect to an Oracle 9i database. The problem is that I can't see the tables I create if I do something like "SELECT * FROM TAB" from a JDBC program and hence can't use them.
    If I do the same statement from SQL * PLUS, I get the the full list of my tables including the ones I created. If i do that from JDBCTest.java, I don't get to see them. I do commit my statments and have tried committing from the Java program and from the SQL Plus after creating the tables....
    Just to make sure I have checked myself, I am pretty sure that I am connecting with the same ID/Password in which I created my tables. I have also used schema.table to no avail... I have used scott/tiger and system/manager
    If i try st.executeUpdate() for example, I get the error : java.sql.sqlException: ORA-00942: table or view does not exist...
    Any help would be greatly appreciated
    Thanx :)
    Nav

    Hi MOD,
    hmmm. Sorry I am not an Oracle geek, but I am under system/manager and I created them all in there. I thought permissions are granted automatically. I tried to grant permissions to myself but had an error that I can't update them myself...
    Can you plz elaborate on how to set permissions cuz actually i installed the database (password still default) and I am not sure if there is a dba other than system/manager who could grant me permissions...
    It works on my home machine with the exact same version of Oracle and Java though and the same users and password :s
    Any other thoughts
    Thanx
    NAV

  • Where can we see Fact Table And Dimension Table in DataWarehouse Workbench?

    Hai Experts
    where can we see Fact Table And Dimension Table in DataWarehouse Workbench?
    Best Regards
    nvnkmr12

    Hi
    Refer the link below and you will get a comprehensive explanation of how data is stored and modeled in BI. If explains fact table, dimension table, SID table, P and Q , X and Y tables.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/6ce7b0a4-0b01-0010-52ac-a6e813c35a84
    Cheers
    Umesh

  • How can I see Game of Thrones 3rd seasson with english captions?

    Hey guys,
    I have bought Game of thrones seasson 3 and it doesn't include captions as the other too. Do you know how can I see Game of Thrones 3rd seasson with english captions?
    I have download the seasson and trying to play with VLC to add subtitles I downloaded online but I can't play the file in VLC. So I don't know what to do...
    Any idea will be much appreciated.
    Cheers

    iTunes Store & Mac App Store: Seeing your purchase history and ...

  • Can't see daily/weekly/or monthly views with iCloud

    can't see daily/weekly/or monthly views with iCloud; having other issues as well

    I can see them in 'Active Appointment" view, but not on my daily/W/M view. 
    (They are also grouped in 'AA" as appointment, recurring weekly, recurring monthly, and recurring yearly.  This makes it hard to find the right appointment as I cannot group them all on one entry)
    I need to have this so that I can tell by day what my appointments are...

  • Can't see the update on my App Store

    Can't see the update on my App Store

    The update server is down; try this temporary workaround
    App Store>Purchased>Select "All"
    Note: Look out for apps that have the word "Update"
    http://i1224.photobucket.com/albums/ee374/Diavonex/9c256282736869f322d4b3071bbb2 a82_zps51a6f546.jpg

  • My iMac 27" screen is black and will not start. The computer is making noise and beeps when i use the keyboard but I can't see anything. I have rebooted with no success

    My iMac 27" screen is black and will not start. The computer is making noise and beeps when i use the keyboard but I can't see anything. I have rebooted with no success

    Have a look at these. And please say what OS you have.
    http://support.apple.com/kb/ts1411
    http://support.apple.com/kb/ts1367

  • I can't see apple store in my Itunes with windows7  after the update

    I can't see apple store in my Itunes with windows7 after the update
    a

    Hi Markie,
    It's not in the top window now, it's in the main section. When you plug your iPod in click on it and at the bottom of the window the Capacity pole changes as it adds stuff.
    Is that what you're looking for?
    Regards,
    Colin R.

  • I can see my IPhone in my Devices list when I connect with a USB but can't see my IPod when I connect with the USB.  How can I get my computer to recognize my ipod

    I can see my IPhone in my Devices list when I connect with a USB but can't see my IPod when I connect with the USB.  How can I get my computer to recognize my ipod

    iPod not recognized in 'My Computer' and in iTunes for Windows

  • I can't see my contacts on my apps ?

    i can't see my contacts on my apps ?

    Contact Viber/go to their support site;
    http://helpme.viber.com/Knowledgebase/Article/View/292/21/contact-viber-support

  • How can I share my music and some apps with my children's devices, but not share iMessage

    How can I share my music and some apps with my children's devices, but not share iMessage

    Then only set up your account in "Settings > iTunes & App Stores" and don't give them your password .

  • Problem with role and user; user can't see the table

    Hello forum,
    I've created a role:
    CREATE ROLE enr_service;
    GRANT CONNECT TO enr_service;
    GRANT ALL ON Locataires TO enr_service;
    GRANT ALL ON Batiments TO enr_service;
    GRANT ALL ON Sportifs TO enr_service;
    GRANT SELECT ON Epreuves TO enr_service;
    and also a user:
    CREATE USER ENR1 IDENTIFIED BY password QUOTA UNLIMITED ON USERS;
    GRANT enr_service TO ENR1;
    ALTER USER ENR1 DEFAULT ROLE enr_service;
    ALTER USER ENR1 DEFAULT TABLESPACE USERS;
    I can connect to the database with this user but when I try to query a table he's been granted access to I get an error message:
    SELECT * FROM Sportifs;
    ORA-00942: table or view does not exists
    I can't see what I've done wrong. Any help is appreciated.
    Sebastian

    user2019788 wrote:
    Hello forum,
    I've created a role:
    CREATE ROLE enr_service;
    GRANT CONNECT TO enr_service;
    GRANT ALL ON Locataires TO enr_service;
    GRANT ALL ON Batiments TO enr_service;
    GRANT ALL ON Sportifs TO enr_service;
    GRANT SELECT ON Epreuves TO enr_service;
    and also a user:
    CREATE USER ENR1 IDENTIFIED BY password QUOTA UNLIMITED ON USERS;
    GRANT enr_service TO ENR1;
    ALTER USER ENR1 DEFAULT ROLE enr_service;
    ALTER USER ENR1 DEFAULT TABLESPACE USERS;
    I can connect to the database with this user but when I try to query a table he's been granted access to I get an error message:
    SELECT * FROM Sportifs;
    ORA-00942: table or view does not exists
    I can't see what I've done wrong. Any help is appreciated.
    SebastianThat's probably because ENR1 doesn't have any table named SPORTIFS and he didn't qualify the table name with the schema name ...

  • Can't see some tables name from connection navigation

    I use sql developer to connect 10g database, I have 50 tables within a user, but it only shows 27 tables. I don't know why. Can anyone tell me ? Thx

    We have 2 oracle10g database.
    If I use Oracle Enterprise Manage(OEM), and login as user A, I can see all tables in both of 2 oracle10g database. but if I use SQL developer connecting with user A, SQL developer can see only part of tables ( about 1/2) in one database and all tables in another databse. I don't know why. but this two database has replication relationship. As I opinion, if I can see in OEM, I can also see in SQL developer.
    anyway, I didn't apply filter. And my privilege is ok. Because I use below in user A:
    select table_name from user_table. this select is only select the tables belong to user A, it has the same result with OEM.
    Thanks anyway

  • Crystal 2008 can't "see" my tables but Version XI can.

    I bought 2008 and tried to connect through ODBC to a progress databse. The tables that have names which include a dash "-" will not run. I tried version XI and it works fine with my same ODBC connection (.dsn) what can I do to correct this? I bought 2008. Can I rool this back or something?

    Hi David,
    Just try to create the connection with ODBC/ OLEDB with DSN connection and update the connection with the set datasource location and verify that you are able to see the tables in the CR XI version.
    Else create a new connection to the existing one and verify the tables are retrieved or not.
    Let us know if you have any queries.
    Regards,
    Naveen.

  • Create CMP Entity Beans from Tables Wizard - Can't see any tables with DB2

    Hi,
    I'm trying to use the "Create CMP Entity Beans from Tables Wizard" to create an entity from a table in a DB2 database. The problem is, on page 2, I can't see any available tables. I have verified that the connection works (I can open the connection in the Navigator frame and I can see that table).
    Note that if I try this wizard on an Oracle database, I can see tables.
    WTF? Can someone please help?

    I second the motion. I too work in an environment with centralized data management (DBA's) that create and maintain all tables under a generic schema. This has prevented me from using the Create Entity Beans from Table feature of Jdev r3 preview.
    At least I can see that I'm not alone.
    Thanks
    When I select the "Create CMP Entity Beans from Tables Wizard," no tables or views are available to select. The JDev database connection is using an ID assigned to me.
    The tables that I am looking for were created by the DBA under his ID and are therefore in that schema. He did create Public Synonyms for them, but the tables still do not show up in the wizard.
    Is there a configuration step that I need to do to have those tables show up?
    Tables created by a DBA and then accessed by developers using a public synonym is a very common scenario and should be supported by JDeveloper (IMO).
    Thanks.
    I'm using JDev 9.0.2.8.2.

Maybe you are looking for

  • Convert from pdf to word?

    i cant convert from pdf to word - when i sign in it greys out the conversion setting so i cant use it - what am i missing?

  • "Unknown" Certificate in Keychain

    I've found a certificate with the name of "Unknown" in my Login keychain. It doesn't have an expiration date, just "???". Keychain says it's unable to display the certificate. Also, "The data does not appear to be a valid certificate." Has anyone els

  • Clock work abnormally in Nokia 2310

    Im using Nokia 2310 V5.10. The problem is the clock is running slow and in 12 HRS it will slow by 1HR. Can anybody share some troubleshooting steps, as I tried switch off the mobile and removed the battery but still not solved.

  • Can't select text in header

    Man... Just found out after build several web sites that, if you want a browser to show a title other than the explicit name of the page in the left column, you need to edit the text in the header. Easy enough. So now, in an existing web site I've bu

  • Token id

    Hey .... i wanna know the token id of my HP premier express 1000,  Can u help me where to find it.?