Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SQL> desc dinshak
Name Null? Type
----------------------------------------- -------- ------------
NAME NOT NULL VARCHAR2(50)
SQL> select * from dinshak;
NAME
--------------------------------------------------
North America
South America
Africa / Middle East
Asia
Europe
Australia
6 rows selected.
SQL> alter table dinshak add x clob;
Table altered.
SQL> update dinshak set x = name;
6 rows updated.
SQL> alter table dinshak drop column name;
Table altered.
SQL> alter table dinshak rename column x to name;
Table altered.
SQL> select * from dinshak;
NAME
--------------------------------------------------------
North America
South America
Africa / Middle East
Asia
Europe
Australia
6 rows selected.
SQL> desc dinshak
Name Null? Type
----------------------------------------- -------- ----
NAME CLOB
That is puzzling...you should be able to see the new CLOB contents immediately from the session where you did the update, and from any other venue/session following the COMMIT.dinshak said:where exactly should i use the commit statement. i used it after update but still the clob fields are empty.