|
When you specify the column name in your statement, make sure that you
enclose the column name in double quotes and that the name is case
sensitive. For example:
SELECT "column_A","Column_B" FROM "TableXYz"
Oracle tends to convert these to all upper case and SQL Server is more
case sensitive. That is the most likely culprit here.
|