Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Error 11003 buffer too small

Status
Not open for further replies.

jrsimmo

Technical User
Apr 1, 2002
53
US
How do I change the size of this buffer?
Thnaks,
-Jim
 
-11003 Data truncated.

This CLI message is issued when the data that a CLI function returns exceeds the defined buffer size. Increase the size of the allocated buffer.

its in your client

you should set

FET_BUF_SIZE larger in your SetNet32
 
And how do I set it on an AIX box? Thanks, -Jim
 
FET_BUF_SIZE

The FET_BUF_SIZE environment variable lets you override the default setting for the size of the fetch buffer for all data except simple large
objects. When set, FET_BUF_SIZE is effective for the entire environment.





n
represents the size of the buffer in bytes.



When set to a valid value, the environment variable overrides the previously set value. The default setting for the fetch buffer is dependent on row
size.

If the buffer size is set to less than the default size or is out of the range of the small integer value, no error is raised. The new buffer size is
ignored.

For example, to set a buffer size to 5,000 bytes, set the FET_BUF_SIZE environment variable by entering the following command:

setenv FET_BUF_SIZE 5000
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top