I am able to create a table in oracle -- but not use desc or insert -


i brand new oracle 11g. login sql plus , create table this.

sql> create table "skills" ("skillid" number(20), "level" number(20), "area" varchar2(20));  table created. 

but try insert or describe table , not work.

sql> desc skills; error: ora-04043: object skills not exist 

it not appear simple issue of case-sensitivity:

sql> desc skills; error: ora-04043: object skills not exist 

i don't understand why seemingly able create table unable call structure or add in data. what's going on? not permissions issue because able insert other tables have created on account.

you're creating table "skills", instead of "skills". using quotes, specify table name should case sensitive. try desc "skills" , see if works better you.


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -