10g - Column Conversion: Varchar2 to CLOB
- From: "Craig" <Craig@xxxxxxxxxxxxxx>
- Date: Mon, 30 Jul 2007 17:02:11 -0400
10g:
Say I have EMPLOYEES table with column Skills as varchar2
I need to convert Skills to NCLOB, this is the "right way" to do it ?
alter table EMPLOYEES add skills_clob nclob ;
update EMPLOYEES set skills_clob = skills ;
commit;
alter table EMPLOYEES drop column skills;
alter table EMPLOYEES rename column skills_clob to skills;
thanks
.
- Follow-Ups:
- Re: 10g - Column Conversion: Varchar2 to CLOB
- From: fitzjarrell@xxxxxxx
- Re: 10g - Column Conversion: Varchar2 to CLOB
- From: DA Morgan
- Re: 10g - Column Conversion: Varchar2 to CLOB
- Prev by Date: Re: HELP - Oracle Schema Import problem
- Next by Date: Re: OS Authentication with winXP client Linux Server
- Previous by thread: Upgrading from solaris 9 to solaris 10. Oracle issues????
- Next by thread: Re: 10g - Column Conversion: Varchar2 to CLOB
- Index(es):
Relevant Pages
|