HenryMonster
Programmer
Hi All,
This may seem like a funny question, but it's really important...
I have a MS SQL database with 36 tables, which my boss wants to move to Oracle.
I tried to use MS SQL Enterprise manager tool: Export and Import and it does the job perfectly with just one caveat:
all the table names and all the column names in this MSSQL database are loiwer case; so when the export toll transfers
it to Oracle, it creates all tables and columns in lower case. AFter this I cannot simply run a SQL statement in Oracle without putting all table names and column names in double quotes, e.g.:
select "account_no", "name"
from "fees_accounts"
This is very annoying.
Of course I can go manually thru all 36 tables and their columns (in Design Table menu) and change everything to upper case.
Is there any way to do this more elegantly (anmd faster).
Any way to do this using MS SQL sys- tables ?
THANK YOU VERY MUCH !
This may seem like a funny question, but it's really important...
I have a MS SQL database with 36 tables, which my boss wants to move to Oracle.
I tried to use MS SQL Enterprise manager tool: Export and Import and it does the job perfectly with just one caveat:
all the table names and all the column names in this MSSQL database are loiwer case; so when the export toll transfers
it to Oracle, it creates all tables and columns in lower case. AFter this I cannot simply run a SQL statement in Oracle without putting all table names and column names in double quotes, e.g.:
select "account_no", "name"
from "fees_accounts"
This is very annoying.
Of course I can go manually thru all 36 tables and their columns (in Design Table menu) and change everything to upper case.
Is there any way to do this more elegantly (anmd faster).
Any way to do this using MS SQL sys- tables ?
THANK YOU VERY MUCH !