Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I insert blob data to DBB2 using stored procedure in .net?

When I insert blob data by sql string = INSERT INTO tblDemo(IDFile,Content) values(?,?) and add DB2Parameters for DB2Command ==> Run ok

Then I write a stored procedure to insert into tblDemo

CREATE PROCEDURE sp_ADD(v_IDFile GRAPHIC(10),
v_Content BLOB(2047M)) LANGUAGE SQL
BEGIN
   insert into tblDemo(IDFile,
    Content)
values(v_IDFile ,
    v_Content);
END

and run DB2Command, I get error:

ERROR [57011] [IBM][DB2/NT] SQL0930N There is not enough storage available to process the statement. SQLSTATE=57011

How can I do that?

share|improve this question

1 Answer

Maybe you must adjust the "UDF Shared Memory" (udf_mem_sz) setting.

share|improve this answer
Can you show comamnd to update udf_mem_sz? The command "db2 UPDATE DBM CFG USING udf_mem_sz 1024" throw error: SQL0104N An unexpected token "1024" was found following "<identifier>". Expected tokens may include: "AGENTPRI". SQLSTATE=42601 – user849296 Jul 20 '11 at 2:29
Which version of DB2 are you using? – elvin Jul 20 '11 at 6:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.