FastUnload (Recordset function): Difference between revisions
mNo edit summary |
m (1 revision) |
(No difference)
|
Revision as of 19:30, 12 April 2011
<section begin=dpl_desc/><section end=dpl_desc/>
FastUnload is a member of the Recordset class.
This callable method performs synchronous or asynchronous unloads using the Fast/Unload User Language Interface of the record set data in the method object.
This method is only available to customers that are also licensed for the Fast/Unload User Language Interface, and it is only available in Sirius Mods version 6.7 and later.
The FastUnload function also requires at least one FastUnload task to be available in the Online in which it is running, which means that the FUNTSKN system parameter must be set to 1 or higher. For more information about Fast/Unload User Language Interface environmental considerations, see the Fast/Unload Reference Manual.
Syntax
%result = %rs:FastUnload( [Input=] inlist, - [Output=] output - [, [Report=] report] - [, [Parameters=] parms] - [, AllMessages= bool] - [, Asynch= bool] - [, Notify= bool] - [, MaxTime= sec] )
Syntax Terms
%result | A numeric value, as follows:
|
---|---|
%rs | A reference to an instance of a Recordset object. |
Input=inlist | A Stringlist object that contains the Fast/Unload FUEL program for the unload. Input is the allowed name for the parameter. |
Output=output | A Stringlist object that is to receive the unloaded data, or a string that contains the DD name that is to receive the unloaded data. Output is the allowed name for the parameter.
If the request is asynchronous, and this parameter is a Stringlist object, the request is cancelled. |
Report=report | A Stringlist object that is to receive the Fast/Unload report, or a string containing the DD name that is to receive the report. Report is the allowed name for the parameter.
If the request is asynchronous, and this parameter is a Stringlist object, the request is cancelled. This is an optional parameter. If it is not specified, the report goes to FUNAUDIT; if there is no FUNAUDIT, the report is simply discarded. |
Parameters=parms | A string that contains the parameters that are to be passed to Fast/Unload. Parameters is the allowed name for the parameter.
This is an optional parameter; if it is not specified, no parameters are passed to Fast/Unload. |
AllMessages=bool | A Boolean enumeration, providing functionality similar to the $Funload ALLMSG parameter: if True, all messages that would go in the Fast/Unload report are sent to the report dataset, report Stringlist, or FUNAUDIT. Informational messages ordinarily suppressed by Fast/Unload User Language Interface are included by this setting.
AllMessages is the required name for the parameter. The parameter itself is an optional parameter, and it defaults to False. That is, many informational messages are suppressed from the report output. |
Asynch=bool | A Boolean enumeration value:
Asynch is the required name for the parameter. The parameter itself is an optional parameter, and it defaults to False. |
Notify=bool | A Boolean enumeration value:
Notify is the required name for the parameter. The parameter itself is an optional parameter, and it defaults to False. |
MaxTime=sec | A numeric value that indicates the maximum number of seconds after initiation of the request that the request is given to complete. If the request has not even started running in a Fast/Unload task, or if the task is running, but hasn't completed after the timeout period, the request is cancelled (resulting in a return code 32 from Fast/Unload).
A value of 0 for MaxTime means that the request will never timeout.
MaxTime is the required name for the parameter. The parameter itself is an optional parameter, and it defaults to the setting of the FUNMAXT system parameter. FUNMAXT is described in the Fast/Unload Reference Manual. |
Usage Notes
- Any errors in the method parameter list (%rs, above), or any environmental errors that would prevent the request from being run, result in the request being cancelled.
Example
In the following example, the FastUnload method uses Fast/Unload to do a PAI unload
to a Stringlist of all the records in file sirFiled
,
and then it displays the Stringlist:
b %rs is object recordSet in file sirFiled %listi is object stringList %listo is object stringList %rc is float find records to %rs end find %listi = new text to %listi FOR EACH RECORD PUT '*' OUTPUT PAI END FOR end text %listo = new %rc = %rs:fastUnload(%listi, %listo, parameters='NEBUFF=10') %listo:print end