GET_INT_CHUNK¶
Applies to: ORAFlex SQLFlex MYSQLFlex PGFlex DB2Flex
This command returns a chunk of the INT file generated from the restructuring done inside of ENABLE_SCRIPTING and DISABLE_SCRIPTING. Since some INT files can be very large, the file can be looped through, grabbing chunks at a time.
Syntax
GET_INT_CHUNK OFFSET {offset} to {variable} [{length}]
Parameter |
Description |
---|---|
offset |
Specifies the offset to start at for the chunk |
variable |
Variable to hold the chunk |
length |
Length of chunk returned (optional) |
Example
ENABLE_SCRIPTING
//Table restructuring would go here
DISABLE_SCRIPTING
GET_INT_CHUNK OFFSET 0 to sChunk sLength
Showln sChunk