Hi.
When trying to convert a LONG column to a VARCHAR2 column in the following statement...
--------------------------------
select to_char(search_condition)
from sys.dba_constraints;
--------------------------------
... I get the following error:
---------------------------------------
ORA-00997: illegal use of LONG datatype
---------------------------------------
When executing the following statement on de pl/sql developer...
---------------------------
select search_condition
from sys.dba_constraints;
---------------------------
... the grid does not return the value of the rows, but a on each row. When the button "..." is pressed, the value is showed in a separated window.
I need to put this text converted into a column VARCHAR2(4000) of a table (to make the constraints translation in the TOracleSession error_message, from DOA). I just could not make it, after trying a lot of things. I would like to know how you made this on your tool.
Thank you for your attention, and waiting for a possible answer.
When trying to convert a LONG column to a VARCHAR2 column in the following statement...
--------------------------------
select to_char(search_condition)
from sys.dba_constraints;
--------------------------------
... I get the following error:
---------------------------------------
ORA-00997: illegal use of LONG datatype
---------------------------------------
When executing the following statement on de pl/sql developer...
---------------------------
select search_condition
from sys.dba_constraints;
---------------------------
... the grid does not return the value of the rows, but a on each row. When the button "..." is pressed, the value is showed in a separated window.
I need to put this text converted into a column VARCHAR2(4000) of a table (to make the constraints translation in the TOracleSession error_message, from DOA). I just could not make it, after trying a lot of things. I would like to know how you made this on your tool.
Thank you for your attention, and waiting for a possible answer.