Persistent request data type
You can ALWAYS use SQL to get data. In fact, this is the only way to get data in or out of the database. The question is what format the data appears in and what you do with it. Some SQL clients can handle binary data poorly. Some will show it as a hex stream (which is probably not very significant).
You can use PL / SQL and possibly UTL_FILE to write binary data to a file on the server. Or look at the UTL_RAW package.
a source to share
You can use perl DBD :: Oracle to query this table and write data. You can use any programming language you like with the oracle client / api which can pull this data and write it to a file. You can also use oracle tools like oracle exp / imp to move data from db to db. Since you haven't specified what you want to do with the data in the long cheese, it's hard for you to help you.
a source to share