Oracle 参数 MAX_STRING_SIZE 官方解释,作用,如何配置最优化建议
本站中文解释
MAX_STRING_SIZE用于指定VARCHAR2,NVARCHAR2及RAW数据类型单个值(single value)允许的最大字符长度;默认值为VARCHAR2:4000, NVARCHAR2:2000;RAW:2000.
可设置为EXTENDED,那么VARCHAR2,NVARCHAR2及RAW将可以储存最大长度为32767字节的值,只有在升级到12.1版本以上才可以设置MAX_STRING_SIZE为EXTENDED。
正确设置:
使用ALTER SYSTEM设置语句对MAX_STRING_SIZE参数进行设置:
ALTER SYSTEM SET MAX_STRING_SIZE = ‘EXTENDED’ SCOPE = BOTH;
运行以上语句,完成参数设置,然后需要重启数据库实例便可以生效:
SHUTDOWN IMMEDIATE;
STARTUP;
官方英文解释
window.name=’MAX_STRING_SIZE’
function footdisplay(footnum,footnote) {
var msg = window.open(‘about:blank’, ‘NewWindow’ + footnum,
‘directories=no,height=100,location=no,menubar=no,resizable=yes,’ +
‘scrollbars=yes,status=no,toolbar=no,width=598’);
msg.document.open(‘text/html’);
msg.document.write(”);
msg.document.write(‘
msg.document.write(‘Footnote ‘ + footnum);
msg.document.write(”);
msg.document.write(”);
msg.document.write(‘ <![CDATA[ ');
msg.document.write('h1 {text-align: center; font-size: 14pt;}');
msg.document.write('fieldset {border: none;}');
msg.document.write('form {text-align: center;}');
msg.document.write(' ]]\u003e ‘);
msg.document.write(‘
Footnote ‘ + footnum + ‘
‘);
msg.document.write(footnote);
msg.document.write(‘