Where allowed to run: All environments (*ALL) Threadsafe: No |
Parameters Examples Error messages |
The Copy To Stream File (CPYTOSTMF) command copies either a database file member or a save file to a stream file. Optional conversion of the data and reformatting is performed when copying a database file member. This command cannot be used to copy to or from a database file member on a remote system. Any overrides in effect for the database file member or the save file are not used by this command.
This command can operate on regular files and on the /dev/null character special file. A regular file is a file that supports the integrated file system input/output (I/O) operations open, read, and write.
For more information about integrated file system commands, see the Integrated file system information in the iSeries Information Center at http://www.ibm.com/eserver/iseries/infocenter.
Restrictions:
Top |
Keyword | Description | Choices | Notes |
---|---|---|---|
FROMMBR | From file member or save file | Path name | Required, Positional 1 |
TOSTMF | To stream file | Path name | Required, Positional 2 |
STMFOPT | Stream file option | *NONE, *ADD, *REPLACE | Optional |
CVTDTA | Data conversion options | *AUTO, *TBL, *NONE | Optional |
DBFCCSID | Database file CCSID | 1-65533, *FILE | Optional |
STMFCODPAG | Stream file code page | 1-32767, *STMF, *PCASCII, *STDASCII | Optional |
TBL | Conversion table | Path name | Optional |
ENDLINFMT | End of line characters | *CRLF, *LF, *CR, *LFCR, *FIXED | Optional |
Top |
Specifies the path name of the database file member or save file from which data is copied. When copying from a member, the file may be a source physical file or a program-described physical file. Source physical files with multiple data fields are not supported.
If the database file is a source physical file, the sequence number and date stamp are removed when the records are written to the stream file.
For more information on specifying path names, refer to "Object naming rules" in the CL concepts and reference topic in the iSeries Information Center at http://www.ibm.com/eserver/iseries/infocenter.
Top |
Specifies the path name of the stream file to which data is copied. All directories in the path name must exist. New directories are not created. If the stream file does not exist, it is created.
This command can operate on files of type *STMF and on the /dev/null character special file.
Note: The QSYS.LIB and independent ASP QSYS.LIB file systems do not allow attributes to be set, so if the path name specified on the TOSTMF parameter is a QSYS member, diagnostic messages will appear in the joblog. The diagnostic messages will not prevent the copy operation from completing successfully and can be ignored.
For more information on specifying path names, refer to "Object naming rules" in the CL concepts and reference topic in the iSeries Information Center at http://www.ibm.com/eserver/iseries/infocenter.
Top |
Specifies whether the copy operation replaces, adds, or fails to copy the records in a stream file if a stream file with the specified name already exists. If the stream file does not exist, it is created.
This value is not allowed when copying a save file.
Top |
Specifies the process for converting the data from the database file member to the stream file.
This parameter is ignored when copying a save file.
Top |
Specifies the method of obtaining the database file CCSID.
This parameter is ignored when copying a save file.
Top |
Specifies the method of obtaining the stream file code page and the CCSID equivalent of the code page that is used for data conversion.
This parameter is ignored when copying a save file.
If the stream file does not exist, the code page equivalent of the source database file CCSID is used and associated with the stream file.
If the data base file CCSID is a mixed encoding scheme, only the single-byte code page is written to the stream file.
If the stream file does not exist, a code page in the IBM PC Data encoding scheme (x2100) is computed. This code page is associated with the target stream file and is used for data conversion if it is requested.
If the stream file does not exist, a code page in the Microsoft Windows encoding scheme (x4105) is computed. (Microsoft, Windows, Windows NT, and the Windows 95 logo are registered trademarks of Microsoft Corporation). This code page is associated with the target stream file and is used for data conversion if it is requested. This option allows the resulting data to be used by Microsoft Windows applications.
Top |
Specifies the path name of the conversion table used to convert data from the database file member to the stream file.
For more information on specifying path names, refer to "Object naming rules" in the CL concepts and reference topic in the iSeries Information Center at http://www.ibm.com/eserver/iseries/infocenter.
Note: This parameter is required and valid only if CVTDTA(*TBL) is specified. This parameter is ignored when copying a save file.
Top |
Specifies the end-of-line characters to insert into the stream file during the copying of records.
This parameter is ignored when copying a save file.
If one of the end-of-line character options is selected (ENDLINFMT(*FIXED) is not specified) the database file records are transformed to variable-length stream file text lines as they are copied. Each database file record is trimmed of any trailing blanks. Then, the data is converted to the destination data format (if specified) and the end-of-line character is appended to the end of the text line. The text line is copied to the stream file.
Only stream files and database files with compatible encoding schemes which do not result in the expansion of data record lengths are valid with this option. If an incompatible combination of encoding schemes is detected, the operation will fail.
The following encoding scheme combinations are supported:
Top |
Example 1: Copying Data from a Database File Member to a Stream File Using Automatic Conversion
CPYTOSTMF FROMMBR('/QSYS.LIB/MYLIB.LIB/MYFILE.FILE/MYMBR.MBR') TOSTMF('STMF.TXT')
This command copies the data contained in database file member /QSYS.LIB/MYLIB.LIB/MYFILE.FILE/MYMBR.MBR to a stream file named STMF.TXT in the current working directory. Automatic data conversion uses the database file CCSID and the code page equivalent of the database file CCSID. The database file member records are stripped of trailing blanks, and CR and LF characters are inserted at the end of each record since ENDLINFMT(*CRLF) is the default value. If the stream file STMF.TXT already exists in the current working directory, the copy operation is not performed since STMFOPT(*NONE) is the default value.
Example 2: Copying Data from a Database File Member to a Stream File Using a Conversion Table
CPYTOSTMF FROMMBR('/QSYS.LIB/FINANCE.LIB/STAFF.FILE/MNGR.MBR') TOSTMF('/MYDIR/FINANCE.MNG') CVTDTA(*TBL) DBFCCSID(37) STMFCODPAG(437) TBL('/QSYS.LIB/QUSRSYS.LIB/TBL1.TBL') ENDLINFMT(*CRLF)
This command copies the data contained in database file member /QSYS.LIB/FINANCE.LIB/STAFF.FILE/MNGR.MBR to a stream file named FINANCE.MNG in the user directory /MYDIR. The data is converted using the conversion table TBL1.TBL contained in the directory /QSYS.LIB/QUSRSYS.LIB. The records in the database file member are trimmed of any trailing blanks, appended with CR and LF characters, and written to the stream file. The blank characters in the database file member are recognized from CCSID 37 specified on the DBFCCSID parameter. The inserted line-formatting characters: CR and LF, correspond to those of code page 437 specified on the STMFCODPAG parameter. If the stream file exists, it must have a code page of 437.
Example 3: Copying Data from a Database File Member to a Stream File Without Data Conversion
CPYTOSTMF FROMMBR('/QSYS.LIB/FINANCE.LIB/STAFF.FILE/MNGR.MBR') TOSTMF('/MYDIR/FINANCE.MNG') CVTDTA(*NONE) ENDLINFMT(*FIXED)
This command copies the data contained in database file member /QSYS.LIB/FINANCE.LIB/STAFF.FILE/MNGR.MBR to the stream file FINANCE.MNG in the user directory MYDIR without data conversion. The stream file data is written as fixed-length records of the same length as the database file records. No line-formatting characters are inserted since ENDLINFMT(*FIXED) is specified. If the encoding scheme of the stream file and the database file differ, the copy ends with an error message.
Example 4: Copying Data from a Save File to a Stream File
CPYTOSTMF FROMMBR('/QSYS.LIB/PACKAGE.LIB/SOFTWARE.FILE') TOSTMF('/MYDIR/SOFTWARE')
This command copies the data contained in save file /QSYS.LIB/PACKAGE.LIB/SOFTWARE.FILE to the stream file /MYDIR/SOFTWARE. The stream file data is written as fixed-length records of the same length as the save file records. No line-formatting characters are inserted, nor is any data conversion performed.
Top |
*ESCAPE Messages
Top |