I have an SE11 table with a column of type STRING
and I'm wondering how this is stored on the underlying DB system (SAP Hana in this case).
I read that only a reference to the LOB is actually saved in a column typed as STRING
and the string itself is saved outside the table. Is this true and does it work the same on Hana? I tried to RTFM but I couldn't find that info.
Is it generally advisable to use CHAR
with a specific length whenever possible?