Difference between revisions of "COPY MEMO"

From Lianjapedia
Jump to: navigation, search
 
Line 27: Line 27:
 
[[Category:NoSQL Commands]]
 
[[Category:NoSQL Commands]]
 
[[Category:Data Export]]
 
[[Category:Data Export]]
 +
[[Category:Memos]]

Latest revision as of 05:42, 19 August 2022

Purpose

Copy a memo field into a file

Syntax

COPY MEMO <memo fieldname> TO <filename> [ADDITIVE]

See Also

APPEND MEMO, MEMOREAD(), MEMOWRITE()

Description

The COPY MEMO command copies the contents of a single memo field into a file. The <memo fieldname> of the current record in the active table is copied to the file specified by <filename>. If no file extension is specified, '.txt' is assumed.

ADDITIVE

The optional ADDITIVE keyword causes the memo to be appended to the end of the text file. Without the ADDITIVE keyword, any existing text will be overwritten.

Example

seek "JimL"
do while emp_code = "JimL"
    copy memo notes to comments additive
    skip
enddo