Hi!

Has anyone encountered this Oracle error before:
ORA-01026: multiple buffers of size > 4000 in the bind list.

I'm not sure what is going on, but at least on the insert operation where this failed, nothing in the bind list was greater than 1Kb. I am using loading blob/long data frough a stream (C++).

Cause: More than one long buffer in the bind list.
Action: Change the buffer size to be less than 4000 for the bind variable bound
to a normal column.

SELECT VALUE "TOTAL BUFFERS" FROM V$PARAMETER WHERE NAME = 'db_block_buffers';
TOTAL BUFFERS
--------------------
3000

cache used by my table = 1/3000

I check the Oracle documentation, but could not find any normal reference to this. Any help would be appreciated.
Thank you.