Table name listed in all_tables, but can't select

I just installed XE, created a user, logged in as user, and created a table. I couldn't insert a record (error: ORA-00942: table or view does not exist) using SQL Command Line, so I logged in to GUI and can insert a record.
If I look in the list of tables, I find the table:
SQL> select table_name from all_tables where table_name like 'E%';
TABLE_NAME
Employee
However, if I try to select something from the table, I'm told table does not exist:
SQL> select * from Employee;
select * from Employee
ERROR at line 1:
ORA-00942: table or view does not exist
Any idea what I'm doing wrong here?
Thanks.
Glenn

Scott,
That is exactly what I did. I guess there isn't a great reason to "preserve case" if it means adding double quotes everywhere.
Thanks for the quick, correct response.
--G                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • In photoshop elements 12 i try to select multiple people to view in organize but can only select one

    in photoshop elements 12 i try to select multiple people to view in organize but can only select one person at a time.  if I try to select two or more people to see their pictures, I get nothing.  I try to use CTL-click, but that does not work

    Hi,
    Try switching to Media view and then go to Find -> By Details.
    Set the field to People and select the persons name.
    You add further people by clicking on the + sign
    The two options above the search criteria allow you to select all photos containing at least one or only ones with all of your selections.
    The search can be saved in case you want to repeat it a later time.
    Hope that helps
    Brian

  • Does any one know table names for Payroll Elements that can be used in WF

    How can one get the table names for ORACLE Payroll Elements and how can one use those table names in order to create a workflow that will automatically update the payroll balances.
    I have created 3 elements for LOAN:-
    One being Direct Payment as its Primary Classification---------------->Loan Amount
    Two being Voluntary Deductions as its Primary Classification------->Recovery Amount
    Three being Information as its Primary Classification--------------------->Reducing Balance.
    Would like to create a work flow that will do automatic updation of the DB items in the Balances. So i want to know what all tables get updated once the transaction is made in Payroll. I am not sure if it really can happend.
    Please PEOPLE i need some 1 to help me.
    Thanking you all in advance,
    Chetan

    Theoretical and acual speeds for all types data connections can differ due to several variables.  I cannot tell you if my eSata connection has ever achieved the theoretical maximum speed because I have never measured it.  However I have compared transfer times against Firewire with large files and it is noticeably faster (at least by 50%+).  Therefore I highly recommend having it if you need to transfer large files from one HDD to another.
    If you have a recent MBP, you already have a Thunderbolt connection.  I do not believe that there will be a Thunderbolt Express Card for older MBPs because they are not configured to accept that technology.
    Ciao.

  • Airport Express listed in Itunes, but can't connect  (error -6753)

    I had to reset my router (Linksys) and Airport Express yesterday. Everything is reconfigured, with one exception. I have a green light on my AE and itunes lists it in the speaker selection bar, but it can't connect. I also cannot connect to the AE using the admin tool. The admin tool lists the AE, prompts me for the password then fails. In both cases (itunes and admin tool) error -6753 is reported.
    Any ideas?
      Windows XP  

    nickpiri wrote:
    I can connect directly to Airport Express and stream via itunes. When I configure the Airport to connect to my new Dlink modem/router, the Airport light goes green, I can see it in iTunes as an option to select but when I select it, the "connecting to Airport.." box appears but it doesn't connect. I don't get an error message.
    I've also tried configuring with no network security on the router but this had the same effect.
    I'm having the EXACT same problem as nick.
    I spent some time talking with support about this and basically concluded that it was an issue with the router (D-Link DIR-625). However, I've exhausted efforts with opening ports and even put the airport in the DMZ...still nothing. I'm hoping someone has some new info on this that doesn't involve a new router or rearranging equipment throughout the house

  • SQL Developer 1.1.0.21.97 Query Builder Table Name List Unsorted

    The Query Builder list of table names is unsorted. Should it be alphabetical?

    We have a number of outstanding issue for the Query Builder. These will not be updated for the next evaluation release. I agree, alphabetical would be a better approach.
    Sue

  • Field symbols as Table name and in where condition in a select statement

    Hello All,
    I have a scenario where I need to get user input on table name and old field value and new field value. Then based on user input, I need to select the record from the database. The column name for all the tables in question is different in the database, however there data type is the same and have same values.
    I am not able to use a field symbol for comparing the old field value to fetch the relevant record in my where clause.
    I cannnot loop through the entire table as it has 10 millilon records, please advice on how to add the where clause as field symbol as the table name is also dynamically assigned.
    Here is my code:
    DATA: TAB       LIKE SY-TNAME,
          TAB_COMP1 LIKE X031L-FIELDNAME,
          TAB_COMP2 LIKE X031L-FIELDNAME,
          NO_OF_FLD TYPE N.
    DATA: BEGIN OF BUFFER,
            ALIGNMENT TYPE F,
            C(8000)   TYPE C,
          END OF BUFFER.
    FIELD-SYMBOLS: <WA>   TYPE ANY,
                  <COMP1> TYPE ANY,
                  <COMP2> TYPE ANY.
    GET TABLE NAME GIVEN BY USER IN LOCAL VARIABLE
      TAB = TAB_NAME.
    CREATE FIELD NAME BASED ON THE TABLE NAME ENTERED.
      CASE TAB_NAME.
      WHEN 'OIUH_RV_GL'.
          KEY FIELD
            TAB_COMP1  = 'GL_GL_SYS_NO'.
            NO_OF_FLD  = 1.
      WHEN 'OIUH_RV_OPSL'.
          KEY FIELD
            TAB_COMP1  = 'OPSL_GL_SYS_NO'.
            NO_OF_FLD  = 1.
      WHEN 'OIUH_RV_OTAX'.
          NOT THE ONLY KEY FIELD
            TAB_COMP1  = 'OTAX_GL_SYS_NO'.
            TAB_COMP2  = 'OTAX_TAX_POS_NO'.
            NO_OF_FLD  = 2.
      WHEN 'OIUH_RV_GTAX'.
          NOT THE ONLY KEY FIELD
            TAB_COMP1  = 'GTAX_GL_SYS_NO'.
            TAB_COMP2  = 'GTAX_TAX_POS_NO'.
            NO_OF_FLD  = 2.
      WHEN OTHERS.
            EXIT.
      ENDCASE.
    SET FIELD SYMBOL WITH APPROPRIATE TYPE TO BUFFER AREA.
    ASSIGN BUFFER TO <WA> CASTING TYPE (TAB).
    How to add where clause and remove the if condition in the select -- endselect
    SELECT * FROM (TAB) INTO <WA>. 
      ASSIGN COMPONENT TAB_COMP1 OF STRUCTURE <WA> TO <COMP1>.
      IF NO_OF_FLD = 2.
        ASSIGN COMPONENT TAB_COMP2 OF STRUCTURE <WA> TO <COMP2>.
      ENDIF.
      IF <COMP1> = OLD_SYS_NO.
        code for updating table would come here
          WRITE: 'MATCH FOUND'.
          EXIT.
      ENDIF.
    ENDSELECT.
    Please advice. Thanks much.
    Edited by: Shipra Jhunjhunwala on Jul 22, 2009 1:33 PM
    Edited by: Shipra Jhunjhunwala on Jul 22, 2009 1:34 PM
    Edited by: Shipra Jhunjhunwala on Jul 22, 2009 1:35 PM

    1. Create single column table for holding field name depending on the table entered.
    2. Take input from user: for e.g. table_name
    3. Using case load single column table with required fields
       for e.g.
      CASE TAB_NAME.
       WHEN 'OIUH_RV_GL'.
             Append 'GL_GL_SYS_NO' to KEY_FIELD --> KEY_FIELD is the single line internal table as mentioned in step 1.
       WHEN 'OIUH_RV_OPSL'.
             Append 'OPSL_GL_SYS_NO'.
       WHEN 'OIUH_RV_OTAX'.
             Append 'OTAX_GL_SYS_NO' to KEY_FIELD.
               APPEND 'OTAX_TAX_POS_NO' to KEY_FIELD.
       WHEN 'OIUH_RV_GTAX'.
             Append 'GTAX_GL_SYS_NO' to KEY_FIELD.
               APPEND 'OTAX_TAX_POS_NO' to KEY_FIELD.
       WHEN OTHERS.
          EXIT.
       ENDCASE.
       Now depending on the table name you have required column ready
    4. Create dynamic internal table using following sudo code
       Fill the fieldcatlog using the single column field table and DD03L table, See what all columns from DD03L you want to fill in field catlog table
       loop at internal table with all the fields.
        move it to field catalog.
        append field catalog.
       endloop.
    5. Pass this field catalog table to static method create_dynamic_table method
       DATA table TYPE REF TO DATA. --> data object for holding handle to dynamic internal table.
       call method cl_alv_table_create=>create_dynamic_table
       exporting
          it_fieldcatalog = fieldcatalog_tab
       importing
          ep_table = table.
    6. Now assign table reference to field symbol of type table.
       ASSIGN table->* to <field-tab>.
    7. Also create work area <field-wa> using refrence of table.
       create data object wa LIKE LINE OF <field-tab>.
       ASSIGN wa->* to <field-wa>.
    8. Also define field symbol for field name.
       for e.g. <field_name>
    4. Dynamic internal table is ready
    5. Now execute the select statement as follows:
       SELECT (KEY_FIELD)
         INTO <ITAB> --> created dynamically above
          FROM (TABLE_NAME)
         WHERE (WHERE).  --> WHERE is single line internal table having line type of CHAR72. So for every old value there will be one line
         Where condition is same as like we give in static way only difference in this case it will stored in internal table line wise.
        In this case you need to append all your where condition line by line in to WHERE.     
    5. To fill this dynamic internal table using ASSIGN COMPONENT <Comp_number> OF STRUCTURE <field-wa> TO <field-name>
       So in this case if first field of structure STRUCT1 is user_id then sudo-code will be
       loop at internal table containing list of fields into field_wa --> single column field table
           ASSIGN COMPONENT field_wa OF STRUCTURE <field-wa> TO <field>. "Here field_wa is wa area for single column internal table holding all the fieldnames.
           Now <field-name> points to user_id field. Move some value into it as nornally we do with variables.
           Move <your_new_value> to <field-name>. --> Assign new value
            or
            <field-name> = <your_new_value>.
       Endloop.
    6. After completing all the fields one row will be ready in <field_wa>.
       APPEND <field_wa> to <field_tab>.
    Hope this helps you.
    Thanks,
    Augustin.

  • Airtune speaker shown but can't select

    my network is setup like this:
    ap extreme connected to modem as router; one windows xp machine connected to ap extreme with cable; one macbook connected wirelessly; one ap express joined the network wirelessly and connected to a pair of speakers.
    the problem is this:
    my macbook can play through the remote speakers alright but for the windows machine the remote speakers are shown in itunes but can't be selected...
    anyone got any idea why?
    thanks
    ike

    seems not the firewall, i have it completely off...
    it dawned on me a moment ago that it could be because my xp version is too old...
    anyway, thanks
    ike

  • Outlook sync works, but can't select calendar

    Hi all.
    I have Outlook 2003 at work and the calendar sync works, but I cannot select individual calendars, I can only sync 'All Calendars' other options are greyed out.
    I do have two separate calendars set up in Outlook.. anyone have any idea how to get around this?
    Thanks.

    I upgraded yesterday and still no workie. I'm on the phone with iPhone support at the moment. I'll let you know if we come up with anything.

  • AirPort express work as a wi-fi router, but can't select external speakers in ITunes to stream music

    I set up my AirPort Express as a wireless router and it works great.  It is plugged in to an external set of speakers, but I cannot select them in ITunes and stream music.  The speaker selection box that is supposed to be in the bottom right corner is not there.

    Having the same issue. Updated iTunes software yesterday and now the speaker selction box has dissappeared. I've been streaming music to my stereo for years using this method. Have tried accessing it from the remote app and the speaker selection option is gone from there too.

  • Tables/views/Procedures/functions etc are not showing up in tree view, but can execute select * on dba_objects (can view in DBVisualizer)

    There was one other thread from years ago detailing this same problem. The only clue was to check whether select all privs were enabled for the user on dba_objects. They are for the user accessing the system. In fact, all tables/views/procs/funcs can be viewed in the tree view of DBVisualizer.  For whatever reason, OSD does not show anything.
    I'd appreciate any clues! Thank you!
    OSD Version  Version 4.1.0.18
    OS: Windows 7/64
    Java: 1.8.0
    Connecting to Oracle 11g 11.2.0.3.0

    Thank you, Gary.
    I updated the post with the version info. I did not explicitly install this JDBC driver, so whatever the OSD came with?  Unless it is using whatever is installed on my machine, in which case would be the thin driver.
    I did check out that post, and I appreciate you sharing it. I did click the 'include synonyms' filter, but behavior remained unchanged.
    I would prefer to use OSD, and that is what our dev team was expecting to use, but we just can't see the information.  We are using an ID that does not 'own' those tables, per se.  But, why would DBVisualizer show these tables, when OSD does not?

  • All but 5-6 of my songs have been deleted from my ipod shuffle.  I can find the list in purchased but can't get them on my device.

    Allbut 5-6 of my 44 songs on my Ipod shuffle have been deleted. They all show up on my purchases but I can't transfer them to my Ipod shuffle device.

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsync/delete all music and resync
    To delete all music go to Settings>General>Usage>Storage>Music>Tap edit in upper right and then tap the minus sign by All Music
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                                
    iOS: How to back up                                                                                     
      - Restore to factory settings/new iOS device.

  • Help adobe reader listed as installed but can not open file

    I need to open a file from email. It says adobe reader not installed but it shows it is installed when I look in control panel. Thanks for any help you can shre..

    1.Which OS you are using?
    2.What version of Reader is shown in in control panel?
    Just try re installing Reader from Adobe website and report any issue you face during installation.

  • Alias listed in iCloud, but can't receive mail.

    Somehow in my migration to iCloud, I lost one of my alias'.  I only have 2, so I'm not over the 3 limit. And when I login to iCloud online, and look at my aliases, it is listed there (two version, one @me and one @mac). But, if I try to send an email to it, I'm told it doesn't exist.  I tried it with both the @me and @mac, and I tried to add it again and it told me I already had that alias.
    Because the actual email that I had been using for the past 7 years or so was the @mac, I'd rather not delete and create it again, since then it will only be @me, and I will have to track down everything that is using the @mac address. I might have to do that anyway, but if I don't have to, that would be great.
    This is the message I get when I try to send to either alias:
    Delivery to the following recipient failed permanently:
    Technical details of permanent failure:
    Google tried to deliver your message, but it was rejected by the recipient domain. We recommend contacting the other email provider for further information about the cause of this error. The error that the other server returned was: 550 550 5.1.1 unknown or illegal alias:  (state 14).
    ----- Original message -----
    DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
           d=gmail.com; s=20120113;
           h=from:content-type:content-transfer-encoding:subject:date:message-id
            :to:mime-version:x-mailer;
           bh=47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=;
           b=fSldCsizDyNIJqjnmtenIPQiIIHQpNt0v/P1SGp4wX3A4J0bJ71mvkfI7ZlNkfcfxx
            JCC/sn5bPyid+9gq2t6hwkqK22sBOU99+WAJHit1BJkYFZ/qKPX4HpZTVHH0HnU57MGj
            z1aABMlF7q4zhXCeQXLR6TH5bo2wjr48/SJAJp2ttIL0DBeo5csCJZrugzPFZmJXENdr
            yeupOc80tMtHZKAXjhgjjQCVpSAgErPTSnI+INf5d5HLAdOrEBBePbNh64YAf+1d2FlF
            m9Y+1ptyOBJbXjd+hO0aqMQiIlWlBxiD7R9IXVB/0GGEv525xmg/JjQKjpXW/O28SyRV
            G2jw==
    Received: by 10.224.42.16 with SMTP id q16mr12738867qae.70.1334535090425;
           Sun, 15 Apr 2012 17:11:30 -0700 (PDT)
    Return-Path: <******>
    Received: from [10.0.1.3] (c-76-116-211-231.hsd1.nj.comcast.net. [76.116.211.231])
           by ****** with ESMTPS id i12sm31259962qad.9.2012.04.15.17.11.28
           (version=TLSv1/SSLv3 cipher=OTHER);
           Sun, 15 Apr 2012 17:11:29 -0700 (PDT)
    From: Gina F. <******>
    Content-Type: text/plain
    Content-Transfer-Encoding: 7bit
    Subject: testing to gmf27
    Date: Sun, 15 Apr 2012 20:11:27 -0400
    Message-Id: <******>
    To: Gina F-B. <******>
    Mime-Version: 1.0 (Apple Message framework v1257)
    X-Mailer: Apple Mail (2.1257)
    <Edited By Host>

    Somehow in my migration to iCloud, I lost one of my alias'.  I only have 2, so I'm not over the 3 limit. And when I login to iCloud online, and look at my aliases, it is listed there (two version, one @me and one @mac). But, if I try to send an email to it, I'm told it doesn't exist.  I tried it with both the @me and @mac, and I tried to add it again and it told me I already had that alias.
    Because the actual email that I had been using for the past 7 years or so was the @mac, I'd rather not delete and create it again, since then it will only be @me, and I will have to track down everything that is using the @mac address. I might have to do that anyway, but if I don't have to, that would be great.
    This is the message I get when I try to send to either alias:
    Delivery to the following recipient failed permanently:
    Technical details of permanent failure:
    Google tried to deliver your message, but it was rejected by the recipient domain. We recommend contacting the other email provider for further information about the cause of this error. The error that the other server returned was: 550 550 5.1.1 unknown or illegal alias:  (state 14).
    ----- Original message -----
    DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
           d=gmail.com; s=20120113;
           h=from:content-type:content-transfer-encoding:subject:date:message-id
            :to:mime-version:x-mailer;
           bh=47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=;
           b=fSldCsizDyNIJqjnmtenIPQiIIHQpNt0v/P1SGp4wX3A4J0bJ71mvkfI7ZlNkfcfxx
            JCC/sn5bPyid+9gq2t6hwkqK22sBOU99+WAJHit1BJkYFZ/qKPX4HpZTVHH0HnU57MGj
            z1aABMlF7q4zhXCeQXLR6TH5bo2wjr48/SJAJp2ttIL0DBeo5csCJZrugzPFZmJXENdr
            yeupOc80tMtHZKAXjhgjjQCVpSAgErPTSnI+INf5d5HLAdOrEBBePbNh64YAf+1d2FlF
            m9Y+1ptyOBJbXjd+hO0aqMQiIlWlBxiD7R9IXVB/0GGEv525xmg/JjQKjpXW/O28SyRV
            G2jw==
    Received: by 10.224.42.16 with SMTP id q16mr12738867qae.70.1334535090425;
           Sun, 15 Apr 2012 17:11:30 -0700 (PDT)
    Return-Path: <******>
    Received: from [10.0.1.3] (c-76-116-211-231.hsd1.nj.comcast.net. [76.116.211.231])
           by ****** with ESMTPS id i12sm31259962qad.9.2012.04.15.17.11.28
           (version=TLSv1/SSLv3 cipher=OTHER);
           Sun, 15 Apr 2012 17:11:29 -0700 (PDT)
    From: Gina F. <******>
    Content-Type: text/plain
    Content-Transfer-Encoding: 7bit
    Subject: testing to gmf27
    Date: Sun, 15 Apr 2012 20:11:27 -0400
    Message-Id: <******>
    To: Gina F-B. <******>
    Mime-Version: 1.0 (Apple Message framework v1257)
    X-Mailer: Apple Mail (2.1257)
    <Edited By Host>

  • Since migrating from Hotmail to Outlook, I can't access my contacts list using Firefox, but can with Internet Explorer - what's wrong?

    Since the migration from Hotmail to Outlook, I can no longer access my Contacts (now People) using Firefox. There is no problem when using Internet Explorer.
    I have v21.0 Firefox, and have cleared cache and cookies.
    What can I do next (apart from not using Firefox)?

    hello madscanner, you could try to [[Reset Firefox – easily fix most problems|reset firefox]] and see if this will address the issue...

  • Go to import XML file but can't select it

    Hi wonder if anyone can help, I've exported an XML from Final Cut Pro but when I go to File - Import, it doesn't recognise the XML file and doesn't let me select it, I've tried exporting in different XML versions and with and without extension name. Worth pointing out that my CS4 master collection was downloaded from adobe whilst waiting for the box to arrive, so not installed from a disk, don't know if that makes any difference. Happy to be humiliated if this turns out to be a school-boy error.
    Premiere Pro CS4 4.0

    Yep that's done it, I thought it was up-to-date as "updates.." was dulled out.
    Thank you

Maybe you are looking for

  • Can you temporarily disable PCI slots ?

    I have two NVIDIA 7300's in my machine along with an HDMI video card called a Blackmagic Intensity. I suspect the Intensity card is conflicting with some FW audio interfaces I have and I'd like to disable it without physically pulling out the card. D

  • "You do not have sufficient access priveleges to rename the item"

    Hi All, I have a strange problem that has appeared over the last few weeks. I can no longer rename applications, and also have noticed that I am being asked for my admin password to allow for certain tasks that I was not prompted for previously. For

  • URLLoader question

    Hi All, I'm struggling with the usage of an URLLoader. The problem is that basically, I need to load SWF's, but if an error occurs (for example, the swf does not exist or the user is not logged in), I want to send a text (JSON) message back to the fl

  • Wharehousing University Research and Academic Papers

    SAP Document Management System. I want to warehouse research and academic papers and expose it to the university community through SAP Enterprise Portal. How do I go about this? Chris Edited by: Christian Bolu on Mar 7, 2009 5:38 AM

  • New Customer - All my experiences so far have been...

    My experience so far after joining BT from Sky on 12th Aug. Joined on 12th August - nice lady on the phone tells me she has managed to secure me a Saturday (30/8) appointment for an broadband engineer, other services (phone, tv) will be available on