Yes. I just wasn't sure what exactly they are looking for and wanted to put it out there as an option. A lot of times people are looking for case insenstive searching.
As far as sql statements go, oracle is case insensitive, as long as you did not create the column names in mixed or lower case on purpose, which most people do not.
select test_col from test_tab;
yields the same results as
SELECT TEST_COL FROM TEST_TAB;
Sean Stuber
yes, fpinheiro, johnsone brings up a good point. Case sensitivity is relative to what you are doing.
Or maybe that's the point of your question.
Can you elaborate?
fpinheiro
ASKER
I need case-insensitive for the data in tables, not in name objects.
like this
in the select above
select name from table where name = 'Robert'