long.sql
The only way to convert LONG columns is in PL/SQL. Look at the following example, which determines the length of the LONG field: SET SERVEROUTPUT ON SIZE 10000; DECLARE long_var LONG; BEGIN SELECT text_column INTO long_var FROM table_with_long WHERE rownum < 2; DBMS_OUTPUT.PUT_LINE('The length is '||LENGTH(long_var)); END; /