scala - Oracle trace logs show unexpected sql with invalid table name (upper case) but application not executing -


is possible? have our apps set use table "videos" lower case. don't see query coming oracle trace shows error in trace.

select * "videos" gives ora-00942 

in application, appears coming insert though.

is there i'm not aware of happening here? don't see toupper or select in caps anywhere. maybe in jdbc land somewhere or oracle internal? hid sys operations when processing traces.

data store update failure (ora-00942: table or view not exist 

edit: suspect there bug in keyedentity trait or autoincrement oracle. not found before because nobody uses lowercase table names :)

you it's lower case in codebase, enclosed in double-quotes? i.e.,

select * videos; 

is not same as

select * "videos"; 

Comments

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

c++ - Clear the memory after returning a vector in a function -

erlang - Saving a digraph to mnesia is hindered because of its side-effects -