I need to undo a delete that was executed on a table that has field with a datatype CLOB. When I use logminer to retrieve the "undo" transaction it, logminer tells me that CLOBS are not supported. The insert statement looks like this:
insert into article (title,teaser,body,)
values ('Latest News','Visit out latest news section','Unsupported Type')
If logminer does not mine CLOB data how can I undo this transaction?
insert into article (title,teaser,body,)
values ('Latest News','Visit out latest news section','Unsupported Type')
If logminer does not mine CLOB data how can I undo this transaction?