I've found related topic in a support article (Link was attached)
There are simple rules ;
"If the table and column names were created in Oracle without quoted identifiers, use all uppercase names.""If the table and column names were created in Oracle with quoted identifiers, use the same case for all letters of the names as was used when the names were created in Oracle."
http://support.microsoft.com/kb/240340
Quotes in the from part of SQL cause (From "dbo".sn_srv_messages") "table or view does not exist" message. If I remove the quotes then quotes in the selected fields part of the sql causes error.
Is there a configuration on ORACLE Database or strataframe ?
Regardless, quotes are the rule for Oracle, so it sounds as though the issue lies elsewhere.
I've got the query by setting debug-on feature.
The query :
SELECT "id", "group_id", "base_message_id", "type", "state", "inserted_user_id", "insert_date" FROM "dbo"."sn_srv_messages" WHERE id IN (ARAM0)
After the query was executed, "ORA-00942: table or view does not exist." Error.
After I 've cleared the "" characters and run the query on a DB tool like SQLNavigator, the Query was succesfully executed.
Why does strataframe fail to run the query ? Why are "" characters generated by the framework ?
Note : I've run the same query with object.FillDataTable. The operation is also successful.