I've got a table (10k rows) that stores large values in a text
column. The current largest is 417 MB uncompressed (85 MB toasted). The flaw in this design is that it's not possible to stream these values (e.g. over JDBC) - anything using this column must read the whole thing into memory.
Are there any tools or shortcuts available to migrate this column to large objects? Minimising the working disk and memory required.
I'll be using lo_compat_privileges
if that make any difference.