Good morning everyone!
I was tasked on migrating tables from a SQL SERVER database to Oracle 9i. The task was completed succesfuly. This is what I assumed when I verify the ammount of data in each individual tables, until I notice that one of my table as padding in it. This stop the application from working properly. I have than try the following script to remvove the spaces place at the end of the entry:
UPDATE TABLE_NAME
SET COLNAME = RTRIM(COLNAME, ' ');
COMMIT;
Guess what it did not work. Is there an other way I can remove that padding from the columns!!!
Thanks in advance for your help!!
I was tasked on migrating tables from a SQL SERVER database to Oracle 9i. The task was completed succesfuly. This is what I assumed when I verify the ammount of data in each individual tables, until I notice that one of my table as padding in it. This stop the application from working properly. I have than try the following script to remvove the spaces place at the end of the entry:
UPDATE TABLE_NAME
SET COLNAME = RTRIM(COLNAME, ' ');
COMMIT;
Guess what it did not work. Is there an other way I can remove that padding from the columns!!!
Thanks in advance for your help!!