Author |
Message
|
sandy.rajh |
Posted: Wed Aug 25, 2010 4:46 am Post subject: MQRC 6113:MQRC_INSUFFICIENT_BUFFER |
|
|
Newbie
Joined: 14 Aug 2008 Posts: 9
|
Hi,
Datastage(ETL) job on AIX server was failing with reason code 6113
mqrc 6113
6113 0x000017e1 MQRC_INSUFFICIENT_BUFFER
MQ Veresion: 6.0.2.0
Server:AIX
Error message: Failed to write fixed-width column to message buffer. Reason code 6113.
can anyone please let me know how to handle with error code 6113, I have checked qmgr/errors and /var/mqm/errors nothing found.
Thanks,
Sandeep |
|
Back to top |
|
 |
Vitor |
Posted: Wed Aug 25, 2010 4:52 am Post subject: Re: MQRC 6113:MQRC_INSUFFICIENT_BUFFER |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
sandy.rajh wrote: |
can anyone please let me know how to handle with error code 6113 |
Increase the buffer size? Just a wild suggestions.
sandy.rajh wrote: |
I have checked qmgr/errors and /var/mqm/errors nothing found. |
Unsurprising - application errors like this are never logged, are they? _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
sandy.rajh |
Posted: Wed Aug 25, 2010 5:52 am Post subject: |
|
|
Newbie
Joined: 14 Aug 2008 Posts: 9
|
what buffer size needs to be increased?
Thanks,
Sandy |
|
Back to top |
|
 |
Vitor |
Posted: Wed Aug 25, 2010 6:04 am Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
sandy.rajh wrote: |
what buffer size needs to be increased? |
Message buffer - how many buffers are there??  _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
sandy.rajh |
Posted: Wed Aug 25, 2010 6:09 am Post subject: |
|
|
Newbie
Joined: 14 Aug 2008 Posts: 9
|
I aware of MQ log buffers only?
Is that possible to increase the message buffers from MQ prospective, correct me if I am wrong.
Thanks,
Sandy
Last edited by sandy.rajh on Wed Aug 25, 2010 11:37 pm; edited 1 time in total |
|
Back to top |
|
 |
Vitor |
Posted: Wed Aug 25, 2010 6:22 am Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
sandy.rajh wrote: |
I aware of MQ log buffers only? |
WMQ logs are not buffered in that sense.
sandy.rajh wrote: |
Is that possible to increase the message buffers from MQ prospective, correct me if I am wrong. |
Afraid you're wrong. This is the message buffer the message is being placed into, i.e. the one supplied by your application (ETL in this instance). WMQ doesn't control that (obviously). _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
gbaddeley |
Posted: Wed Aug 25, 2010 5:56 pm Post subject: |
|
|
 Jedi Knight
Joined: 25 Mar 2003 Posts: 2538 Location: Melbourne, Australia
|
"There is insufficient buffer space available after the data pointer to accommodate the request. This might be because the buffer cannot be resized. This reason code occurs in the WebSphere MQ C++ environment."
This suggests the cause is a programming error, not MQ itself.
Maybe some C++ code is doing a MQINQ but the buffer supplied by the code is not long enough for MQ to return the entire value of attributes being inquired. _________________ Glenn |
|
Back to top |
|
 |
bruce2359 |
Posted: Wed Aug 25, 2010 6:18 pm Post subject: |
|
|
 Poobah
Joined: 05 Jan 2008 Posts: 9469 Location: US: west coast, almost. Otherwise, enroute.
|
Quote: |
Maybe some C++ code is doing a MQINQ ... |
What MQ call resulted in the 6113 RC?
An MQPUT? MQGET?
What is the length of the message in the queue when this failed? _________________ I like deadlines. I like to wave as they pass by.
ב''ה
Lex Orandi, Lex Credendi, Lex Vivendi. As we Worship, So we Believe, So we Live. |
|
Back to top |
|
 |
|