Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find out if an Oracle column is SecureFile

In Oracle 11gR2 which view(s) I have to query to find out if a CLOB column is stored as SecureFile?

like image 394
Andrea de Palo Avatar asked Mar 23 '23 19:03

Andrea de Palo


1 Answers

Just use the dba_lobs view (or all_lobs/user_lobs if you don't have the necessary privileges):

select * from dba_lobs where securefile = 'YES'
like image 61
Frank Schmitt Avatar answered Apr 25 '23 01:04

Frank Schmitt