We'd like to use PostgreSQL to store documents. As some of them might be up to 2 GB big, we have to use the lob-Datatype, where the large objects are stored in a separate table (pg_largeobject
), referenced by an OID, as per the docs on large objects.
For us it's very important that these documents (.pdf
, .doc
, ...) can be searched. With the built-in PostgreSQL full text search tables and columns can be searched, but is it possible to search the large-objects in the pg_largeobject
table as well?
If not, we have to use Oracle.