I’m using Oracle 10g. I want to append # to all values in ‘sal’ column. To acomplish this first I’m trying to change data type of ‘sal’ column from numeric to varchar but getting following error

What am I doing wrong ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You should use
modifykeyword instead of your secondalter.When modifying a tables column datatype , you need to use
modifykeyword.Of course, you must deal with existing column data. When modifying a tables column datatype you may want to export the rows, redefine the table and then re-import you data.
In this you would need to follow these steps to alter a column data type: