use the SUBSTR function..DBMS_LOB.SUBSTR ( lob_loc IN CLOB CHARACTER SET ANY_CS, amount IN INTEGER := 32767, offset IN INTEGER := 1) RETURN VARCHAR2 CHARACTER SET lob_loc%CHARSET;something like this... (change the syntax as appropriate to Oracle..)Create or Replace view My_Test_view as SELECT <col1>, <col2>..., DBMS_LOB.SUBSTR (<CLOB>, 8000, 1) as CLOB1, DBMS_LOB.SUBSTR (<CLOB>, 8000, 8001) as CLOB2, DBMS_LOB.SUBSTR (<CLOB>, 8000, 16001) as CLOB3.....<depends on how many bytes your CLOB data might be...> FROM <table_name>
hope it helps....Hemanth GorijalaExchange a Dollar, we still have ONE each._______Exchange an Idea, we both have TWO each.