Abbeyro,
ALL_TABLES seems to store the table name in upper case (as do most
dictionary views in Oracle):
http://www.suite101.com/article.cfm/oracle/115853/2
http://archives.postgresql.org/pgsql-jdbc/2002-11/msg00146.php
Although the second link seems to suggest that if you quote the table
name upon creation, it will retain the table name (you should test this out
first).

Signature
- Nicholas Paldino [.NET/C# MVP]
- mvp@spam.guard.caspershouse.com
> Hello,
>
[quoted text clipped - 10 lines]
> Thank-you.
> Abbeyro
abbeyro@gmail.com - 07 Jan 2008 21:58 GMT
On Jan 7, 12:53 pm, "Nicholas Paldino [.NET/C# MVP]"
<m...@spam.guard.caspershouse.com> wrote:
Although the second link seems to suggest that if you quote the table
> name upon creation, it will retain the table name (you should test this out
> first).
Thanks for your reply Nicholas. I already verified that all_tables
actually returns the proper case, by using Oracle's command line.
The issue therefore seems to be with the Microsoft adapter that
returns everything uppercase.
Created as: "my/table"
From shell: my/table
From .NET: MY/TABLE
Is there any way to specify that this shouldn't be the correct
behavior?
Thank-you in advance.