I am trying to add freelists to a table and lob segment. I added freelists for that table with:

alter table storage (freelists 4);

But I don't know the syntax to add freelists to a lob segment. The lob segment is in its own tablespace if that makes a difference. I have tried:

alter table modify lob() (freelists 4);

But it did not work. Somewhere I read that lobs don't use freelists. But I know I can set the number of freelists for the lob when creating the table. I have not been able to find anything after hours of searching. Thanks for any help!