Example |
 |
A stored procedure retrieves the number of free blocks of
log space available. Create a stored procedure with an output parameter.
EXEC SQL create procedure cp (freeblock integer OUTPUT) as
begin
checkpoint :freeblock;
end;
|
Pass the host variable as an output parameter to procedure.
EXEC SQL execute procedure cp (hstfblk output);
writeln('free log space available', hstfblk);
if hstfblk <= TOOLOW then
writeln('Add new log files ');
|
A log block is a 512-byte allocation of storage. When you
submit the CHECKPOINT statement interactively, ISQL displays the amount of
log space available for use.
isql=> CHECKPOINT;
Number of free log blocks is 240
isql=>
|
ISQL assigns and displays the free log space.
A program retrieves the number of free blocks of
log space available. In a Pascal application program, declare a
host variable.
EXEC SQL begin declare section;
hstfblk : integer;
EXEC SQL end declare section;
|
Submit a checkpoint with host variable to obtain free log
space available.
EXEC SQL checkpoint :hstfblk;
writeln('free log space: ',hstfblk);
if hstfblk <= TOOLOW then
writeln('Add new log files ');
|