Does anyone know that if Impromptu 7 supports Oracle CLOB data type? If not, do you have a workaround for it? We have an Impromptu report that reads CLOB data from Oracle server. Apperantly, it is not working.
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
};
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.