I'm using this code to read a file, line by line. Most lines are shorter than 32767 symbols, but some are longer. No line is longer than $$$MaxStringLength and long strings are enabled. Is there a param to Open/Read command I can pass to increase Read limit? My code: set filename = pFile open filename:("R") for { use filename read x quit:$ZEOF=-1 set ^dbg($i(^dbg)) = $lb($e(x,1,10), $e(x,*-10,*), $l(x)) } close filename I've checked [reclen parameter](https://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls?KEY=GIOD_rmsseqfiles) but it did not seem to help