- 论坛徽章:
- 0
|
在下面C程序段中,一直报错DBMSG:[-2147][0]SQL-02147: ANSI Dynamic occurrence value out of range
有同事说这是数据库配置的问题,不知有没有哪位碰到过这种问题,盼解答一二。
parallel 值为60,也调整到260,但问题依旧。
EXEC SQL FOR :parallel ALLOCATE DESCRIPTOR 'out_des';
EXEC SQL DESCRIBE OUTPUT sel_pre USING DESCRIPTOR 'out_des';
EXEC SQL GET DESCRIPTOR 'out_des' :col_num=COUNT;
for( i=0; i<col_num; i++ ) {
cur_col = i + 1;
EXEC SQL GET DESCRIPTOR 'out_des'
VALUE :cur_col :col_type=TYPE, :col_len=LENGTH;
/* 保证有足够长度存放字符串形式的数据 */
if( col_type != ANSI_VARCHAR2 && col_type != ANSI_CHAR )
col_len = 64;
if( col_type < 0 ) /* LONG CLOB ... */
col_len = FLDSIZE + 1;
if ( (i>95) && (i<101) ) sch_errlog( __FILE__, __LINE__, "col_len[%d]",col_len);
col_type = ANSI_VARCHAR2; /* 以字符串方式卸数,长度不能超过4000 */
col_len_array = col_len + 1;
for( j=0; j<parallel; j++ ) {
col_cur_tmp[j] = cur_col;
col_type_tmp[j] = col_type;
col_len_tmp[j] = col_len + 1;
}
EXEC SQL FOR :parallel SET DESCRIPTOR 'out_des'
VALUE :col_cur_tmp TYPE=:col_type_tmp, LENGTH=:col_len_tmp;
} |
|