Hi Windjuly,
Yes, Impromptu 7 supports Oracle CLOB data type. If you want to extract data from the CLOB, you first need to create a table containing an XMLType column. Then you can insert the the data from your table that contains the CLOB.
Step 1:
CREATE TABLE TEST_CLOB
{
ID NUMBER (38) NOT NULL,
XML XMLType NOT NULL
};
Step 2:
ALTER TABLE TEST_CLOB
ADD CONSTRAINT TEST_CLOB_PK
PRIMARY KEY (ID);
Step 3:
insert into TEST_CLOB
select id, XMLType(XML)
from ORIGINAL_TABLE;
Finally, you can use the SQL extract command to retrieve the data.
Let me know if this is helpful.
Latonya