set sbspace avg_lo_size argument: Set the average size of smart large objects (SQL administration API)

Use the set sbspace avg_lo_size argument with the admin() or task() function to specify an expected average size of the smart large objects in the specified sbspace so that the database server can calculate the size of the metadata area.

Syntax


1  EXECUTE FUNCTION
1 admin
1 task
2  (
2  "set sbspace avg_lo_size" , "sbspace" , "average_size"
2  ) ;
Element Description Key Considerations
sbspace The name of the sbspace.
average_size The average size, in kilobytes, of the smart large object stored in the sbspace. Windows™: 4 to 2**31

UNIX™: 2 to 2**31

Usage

This function is equivalent to the onspaces -ch command.

Example

The following example sets the expected average size of smart large objects in the sbspace named sbsp1 to 8 KB:
EXECUTE FUNCTION task("set sbspace avg_lo_size","sbsp1","8");