I've been given a task to convert a huge database in MS SQL Server to Oracle. The database has more than 150 tables with lots of constraints,defaults and relationships, that many stored procedures and triggers. Now I wonder 2 things:
- How is this generally done? Do we have to do it manually for every object one by one or there's some better way?
- String columns in Oracle are by default created in byte units. How can I update all the columns in all the tables from byte to char?
Thanks in advance.