How to use Oracle convert rtf to text?

Asked By 20 points N/A Posted on -
qa-featured

What are the steps I can take to use oracle convert rtf to text? Could there be an inbuilt function that I can use to accomplish this task?

SHARE
Best Answer by Smith Max
Answered By 0 points N/A #128834

How to use Oracle convert rtf to text?

qa-featured

Unfortunately there is no inbuilt function to convert from rtf to text.

but you can try using Oracle Text CTX_DOC.FILTER , It's a PL/SQL procedure that converts from .rtf to plain text and other formats

 

Here's the official oracle documentation of all functions and procedures of CTX_DOC package , I hope it works 

https://docs.oracle.com/cd/B10501_01/text.920/a96518/cdocpkg.htm

Best Answer
Best Answer
Answered By 0 points N/A #197807

How to use Oracle convert rtf to text?

qa-featured

 

Hey Arthur,

Converting Rich Text Files into plain text could be done in two simple steps. The Method could also be called un-Riching Rich Text.

The first step you have to do is getting the data into Oracle, and then Transform the data.

The first step requires you to change some driver settings. The second is an open source code found online.

You can always visit these two websites for more information:

https://jeffkemponoracle.com/2007/08/un-riching-rich-text-format/

https://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:25695084847068

Related Questions