Exported to Oracle - MS Access tables Tables are there but not queryable?

Access tables exported to Oracle via ODBC. The tables are there, but when I query them, I get:

ERROR on line 1:
ORA-00942: table or view does not exist

-----

SQL > user sho
The USER is "USCG".

SQL > select table_name from user_tables where table_name like 'org % ';

TABLE-NAME
------------------------------
org_

SQL > select count (*) in the org_;
Select count (*) in org_
*
ERROR on line 1:
ORA-00942: table or view does not exist


SQL > select count (*) in the uscg.org_;
Select count (*) in uscg.org_
*
ERROR on line 1:
ORA-00942: table or view does not exist


SQL > connect system
Enter password: *.
Connected.
SQL > select count (*) in the uscg.org_;
Select count (*) in uscg.org_
*
ERROR on line 1:
ORA-00942: table or view does not exist

What I'm missing here?

Thank you

The problem is that you have created the table like this:

 create table "table_name" . . .;

Instead of

 create table table_name . . .;

Now, you need to reference the table using the character (""), but it is not recommended.
Try to rename:
{code} alter table 'table_name' Rename to table_name; {code}

HTH

Enrique.

Published by: Enrique Orbegozo on October 29, 2008 15:21

Tags: Database

Similar Questions

  • When I go to Amazon (music section), cd titles are there but not the image of cd cover. If I use explore photos are here. Why?

    When you use Firefox as your browser, if I go to amazon.com and search for a particular cd, the title and all the other info on the cd came but there is no cover image. This problem has just a few days ago everything was going well for in recent years - but now there is no picture on almost anything. If I use Explorer as browser and do the same research, photos are all there, as it should. What happens here?

    See http://kb.mozillazine.org/Images_or_animations_do_not_load

    It is possible that you clicked on 'Block Images' from the context menu in an attempt to save an image.

    Check the image exceptions: Tools > Options > content: Load Images: Exceptions

    See web content, pop-ups, fonts and language settings

    • A way to see what images are blocked is to click on the favicon (Site ID icon) on the left side of the address bar.
    • Click on the "More information" button opens the Security tab of the "Page Info" window (also accessible via "tools > Page Info").
    • The Media of the "Page Info" window tab.
    • Select the first image and scroll though the list with the arrow pointing downwards.
    • If an image in the list is grayed out and there is a check mark in the box "block Images of..." and remove this mark to unlock the images from this area.
  • Miniature pictures are there but not normal

    My thumbnails of photos all look at them like they are behind frosted glass and have a red exclamation mark on them.  When clicked they open normally, but Picasa and PhotoScape is no longer recognize them as being on the computer.
    How to return to function normally?

    Right-click on the file and select Properties,

    Uncheck the hidden attribute.

  • Why are there (but not all) of my Muse slideshow widget images turned out differently when I've retouched in Photoshop CC?

    I have a few dozen photographs embedded in the slideshow widget. Most of them seem exactly as I've retouched in Photoshop, but several appear rotated clockwise 90 or 180 degrees. No one knows why this is happening, and ideally, how can I solve this problem? Thank you.

    Rotated_Image_1.jpg

    Rotated_Image_2.jpg

    Please share the url of the site, also refer to this post and check if that helps:

    Why do some of my images matter upside?

    Second, if you change the type of fill so - what makes the difference?

    Thank you

    Sanjit

  • Can you check data in a table or another, but not both in a single query?

    I have a situation where I need to connect the two tables, but the data can be in another table (archive) or different records are in both but I want the last disk in two tables:

    ACCOUNT

    AccountID name

    John Doe 123

    Jane 124 Donaldson

    125 Harold Douglas

    MARKETER_ACCOUNT

    AccountID key Marketer StartDate EndDate

    1001 123 10526 8/3/2008 9/27/2009

    1017 123 10987 9/28 / 2009 12/31/4712 (high date ~ that means currently with this Distributor)

    1023 124 10541 03/12/2010 12/31/4712

    ARCHIVES

    AccountID key Marketer StartDate EndDate

    1015 124 10526 8/3/2008 12/02/2010

    1033 125 10987 01/01/2011 01/31/2012

    If my query should return the following:

    123 John Doe 10526 8/3/2008 9/27/2009

    Jane Donaldson 10541 12/03/2010 31/12/124 4712 (that is the later of the two folders for this account between tables Archives and marketer_account)

    125 Harold Douglas 10987 01/01/2011 01/31/2012 (it is in the archives, so get this recording)

    I'm not sure how to do this in a single query.  Beware, I am possibly reading several accounts at once and return to a .net collection

    Open CURSOR_ACCT

    Select the account ID

    Of

    ACCOUNT A,

    MARKETER_ACCOUNT M.

    R OF THE ARCHIVES

    where A.AccountID = nvl ((select max (M.EndDate) of Marketer_account M2

    where M2. AccountID is A.AccountID),

    (select max (R.EndDate) in Archive R2

    where R2. AccountID = A.AccountID)

    and upper (B.SID) as a parameter. '%'

    < can you do a NVL like that?   probably not...   I want to be able to get the MAX registration for this account on the table of MarketerACcount OR recording max for this account to off the table to Archive, but not the two >

    (setting could be 'DO', so I return all names beginning with...)

    Hello

    So, you have a few lines in marketer_account and the other rows in the archives, but you do not want to treat all lines, as if it were a table, is it?

    This sounds like a job for the UNION:

    WITH union_data AS

    (

    SELECT StartDate, EndDate, Marketer, AccountID

    OF marketer_account

    UNION ALL

    SELECT StartDate, EndDate, Marketer, AccountID

    To archive

    )

    got_MaxEndDate AS

    (

    SELECT StartDate, EndDate, Marketer, AccountID

    MAX (EndDate) ON (AccountID PARTITION) AS MaxEndDate

    Of union_data

    )

    SELECT a.AccountID, B.SID

    m.Marketer, m.StartDate, m.EndDate

    One ACCOUNT

    JOIN got_MaxEndDate m ON m.AccoutnID = a.AccoundID

    WHERE m.EndDate = m.MaxEndDate

    ;

    I hope that answers your question.
    If this is not the case, after a CREATE TABLE and INSERT statements for your sample data.
    Report when the above query is the production of incorrect results and explain, using specific examples, how to get results in these places.
    Always say what version of Oracle you are using (for example, 11.2.0.2.0).

    See the FAQ forum: https://forums.oracle.com/message/9362002#9362002

    .

    Starting with version 8, the maximum year in DATEs Oracle is 9999, not 4712.

  • Why do the topics become Chinese when I access my email via Firefox but not Internet Explorer?

    Why do the topics become Chinese when I access my email via Firefox but not Internet Explorer?

    Hello, this is a display caused the extension Advisor default McAfee site - please try to disable or remove that in case you have now until there's a mcafee update that may resolve the problem.

    http://service.McAfee.com/faqdocument.aspx?ID=TS100162
    https://community.McAfee.com/thread/76071

  • Got the Trojan.Zbot before the antivirus kicks. All previous emails show they are there but cannot see the content. They can be restored?

    All old emails show they are there, but there is no content when you try to open them.

    right click on the folder, select Properties, and then on the button repair. A new index will be generated which can fix the issue or do the empty emails disappear because they are no longer available to be indexed.

    BTW look in your anti virus program for files quarantined with names like Inbox

  • How can I synchronize my emails from my Mac Pro on my iPhone and iPad Mini?  My iPhone and iPad are synchronized, but not with my Mac Pro?

    My iPhone and iPad emails are synchronized, but not with my Mac Pro?  Example, when I delete an email from my iPad, it is deleted in my iPhone but not my Mac computer.   How to connect the three...

    An e-mail account? More than one account? All accounts?

    Who is the provider?

    What type of IMAP/Exchange or Pop3 account?

    Only IMAP/Exchange accounts synchronize the device and some accounts as Google can be configured in any way.

  • I send you emails as usual with windows live hotmail, now they are sent but not received?

    emails

    I send you emails as usual with windows live hotmail,.

    now, they are sent but not received?

    Your question is related to hotmail and would be better suited in the Windows Live hotmail Solution Center, where one of the experts in this area would be better suited to offer you a solution.

  • I can't the WLAN to work. It shows that the drivers are there, but I can't always to work and pick up the wireless here.

    Original title: what I am doing wrong?

    I just reinstalled Windows XP on a blank hard drive (new).  I have installed WLAN driver disk resource. I can't the WLAN to work. It shows that the drivers are there, but I can't always to work and pick up the wireless here. What can I do?

    Hello

    The following articles may be useful:

    5 steps: how to set up your network wireless home
    http://www.Microsoft.com/athome/organization/wirelesssetup.aspx
    How to troubleshoot possible causes of Internet connection problems in Windows XP
    http://support.Microsoft.com/kb/314095 
    Windows wireless and wired network connection problems
    http://Windows.Microsoft.com/en-us/Windows/help/wired-and-wireless-network-connection-problems-in-Windows

  • On windows 7, right click - new - * file * does not appear to create folders, I see other files word, excel etc. are appearing but not "folders".

    On windows 7, right click - new - *file* does not appear to create folders, I see other files word, excel etc. are appearing but not "folders".

    When I try to create Folders by right-click - New, it does not appear.

    Help, please.

    How to remove and restore the default context Menu items 'New' in Windows 7 and Windows 8
    http://www.SevenForums.com/tutorials/28677-new-context-menu-remove-restore-default-menu-items.html
     
     

    Tip: When you save the text in Notepad, the default file format is .txt. Replace all files.
     
     
     

     
  • Windows 7 edition starter, r internet bars are there but yellow exlimation point

    HI, I'm u

    sing a windows 7 starter, the I'm having problems, it is that when I turn on my computer, internet bars are there but so is a sighn yellow on it.

    Also when I checked my internet status it shows two connections it what I do

    You will find support for your connection Win7 problems in this forum: http://answers.microsoft.com/en-us/windows/forum/windows_7-networking

  • We do not find our user accounts, it is said that they are there, but they do not appear in the folder

    We just got this PC and tried to establish user accounts.  He said that accounts of users (2) are there but they do not appear in the record and 1 single user is available.

    Hello

    Press the Windows key + R, type netplwiz command run, click OK. In the user accounts window, you should be able to see all the user accounts on your system.
    Hope this helps, good luck :)
  • With the help of Oracle heterogeneous access table to sql server database services

    I created a dblink "POC_HS" of oracle to sql (heterogeneous services implemented) and I can't go out data from the default database to which the DSN (for sql server) is connected successfully.

    So, this ' select * from ' Test@POC_HS is works perfectly well on the Oracle database as 'Test' table resides in the default database (that the system DSN is connected to).

    But when I do ' select * Abc.Test@POC_HS' where the Test table resides in the 'ABC' database which is not the default survey database an error as follows:

    ORA-00942: table or view does not exist the name of incorrect [generic object using ODBC Connectivity] [Microsoft] [ODBC SQL Server driver] [SQL Server] 'Abc.Test '. [Microsoft] [ODBC SQL Server driver] [SQL Server] Instructions could not be prepared. (SQL State: S0002;) SQL code: 208)

    I also tried "select * from Abc.dbo.Test@POC_HS' but oracle throws this exception" ORA-00933: not correctly completed SQL command "."

    The dblink and system DSN user account has access to database 'Abc '.

    Thoughts?

    No, this is not possible.

  • Name of the table list ALL_TABLES but not in TABS

    Hello

    I was trying to programatically check if a table is exist or not and insert the records if exist (via Java). I see a weired behaviour where when I check the metadata through my connection, I see this table_name in it (don't think there is an error in the logic), but when I try to insert a record after that, he lifts - java.sql.SQLException: ORA-00942: table or view does not exist.

    When I manually check the DB, I see this table to table ALL_TABLES but not in TABS (not sure what is the same difference between those two, and that is the right place to check), desc < table_name > is also a failure...

    I'm really confused if the table is exist or not...

    Any help is really appreciated.

    Thank you
    Rajiv

    SHOW USER
    Select owner, table_name from ALL_TABLES where table_name = 'PROPDB_VIEW_MAP ';

    probably, 'you' (USER) are not the owner of this table

Maybe you are looking for