Re: Change of data type problem
Posted by: Bob Field
Date: January 29, 2007 10:13AM

You can use the ALTER TABLE command which will do this for you: create a new table in the new structure, copy the data, then drop the old table.
ALTER TABLE yourtable MODIFY COLUMN id varchar(255);

Options: ReplyQuote


Subject
Written By
Posted
Re: Change of data type problem
January 29, 2007 10:13AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.