ENCRYPT_PASSWORD
 Encrypt one or all user passwords defined in PSOPRDEFN table.
 Example: ENCRYPT_PASSWORD ROGERS;
EXPORT
 EXPORT command will be used to export the data from a table or a join of tables and store the result set in a file. You can use the generated export file as input for migrating data to any another platform.
Example:
SET OUTPUT C:\PS_CUSTOMER.dat
EXPORT PS_CUSTOMER;
IMPORT
IMPORT command will be used to Insert data into PeopleSoft tables using the data in an exported file. If a tablespace or table does not exist, this command creates tablespace, table, and indexes for the record, using the information in the exported file, and inserts the data.
Example
SET INPUT C:\PS_CUSTOMER.dat
IMPORT *;
Â
REM, REMARK, and –
 These commands will be used to indicate comment statements in the data move scripts.
Example:
REM Example file;
Â